为什么jquery追加不适用于phonegap ios

时间:2012-07-30 09:20:40

标签: javascript jquery ios cordova

我想在div中添加一些html并使用此代码(在document.ready函数中):

var html= "<h2>Name:"+JSONObject.name+"</h2>" 
html += "<h2>Address:" +JSONObject.address+"</h2>";  
html += "<h2>Age:" +JSONObject.age+"</h2>";  
html += "<h2>Phone No.:"+JSONObject.phone+"</h2>";  
html += "<h2>Mobile No.:"+JSONObject.MobileNo+"</h2>";
$('#locationresultholder').append(html);

现在我在html文件的正文中:

<div id="locationresultholder"></div>

现在,如果我启动ios模拟器,我看不到要添加的HTML。谁知道怎么做?

1 个答案:

答案 0 :(得分:1)

首先你要检查是否包含了jquery的文件~~ 例如,进行测试:

$(function(){
alert("jquery");
})

你可以使用firebug检查jquery文件路径,检查404错误, 这就是我所知道的,我希望它对你有用