如何编写程序来获得这些类型的输出?

时间:2013-07-23 06:09:35

标签: html5 jquery jquery-mobile

如果数据是在包含滑动的页脚中动态传递的。    通过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
            }); 
      }

我需要这些输出: -

enter image description here

0 个答案:

没有答案