0

我想向 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。有谁知道怎么做?

4

1 回答 1

1

首先你应该检查是否包含jquery的文件~~例如做一个测试:

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

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

于 2012-07-30T09:39:29.640 回答