knockout.js - jquery mobile a link can not work while using knockoutjs data-bind -
i write link jquery mobile like: < href="#detail" />
it work first time.
then modify use ko bind,like: < href="#detail" data-bind="click:newadvice">
it can not chagepage, not know why?who can me?
try set link data-bind click:
<a data-bind="click: showhomepage" data-role="button">homepage</a>
this javascript:
self.showhomepage= function () { $.mobile.changepage("#homepage", { transition: "slide" }); return false; };
and html homepage is:
<div data-role="page" id="dashboard"> ... </div>
Comments
Post a Comment