我不确定问题是在请求中还是在结果显示中,但这对我不起作用,当我点击手机上的链接时,我在桌面(Chrome)上看到白屏工作没有问题。
$('a').on('click', function(click_event){
$.get($(this).attr('href'),function(response_text){
$('body').html(response_text)
})
click_event.preventDefault()
return false
})
'Debugging' with weinre 它告诉我它进入了get函数......我正在使用PhoneGap Build并且没有设置config.xml,但是当我在手机上安装应用程序时,它会询问访问互联网的权限...
任何帮助,将不胜感激。