0

如果数据在包含滑动的页脚中动态出现。通过ajax调用im进行编码它是使用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
            }); 
      }

我需要这些输出:-

在此处输入图像描述

4

0 回答 0