I use phonegap and JQueryMobile to make a webapp,but when use
$.mobile.changePage
it doesn't work and show Error Loading Page开发者_运维问答
, then I have
a test, when I use http://localhost/aa.html
use changePage
is ok, but when I
use in local file file:///D:/aa.html
, then common link and the
changePage
all not work, how to fix it?
I use the last version of JQuery and JQuery Mobile.
Instead of using
$.mobile.changePage("page.html")
use:
$.mobile.navigate("page.html")
精彩评论