如果数据是在包含滑动的页脚中动态传递的。 通过ajax调用我正在进行编码,使用GET方法进行xml解析
在Html中: -
<div data-role="page" id="page1">
<div data-role="footer" data-position="fixed" id="footer">
<div id="wrapper">
<div id="image1"></div>
<div class="menu" id="menu_button1"></div>
</div>
</div>
在jquery中: -
function callMenuConnection() {
$.support.cors = true;
$.ajax({
type: "GET",
url: "one.html",
contentType: "text/xml",
dataType: "xml",
data: "",
cache:false,
processData:false,
crossDomain:true,
success: processSuccess,
error: processError
});
}
我需要这些输出: -