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