div动态加载页面

   /*  /// method 1
                       var url="<%=basePath%>/qne.do?p=pessegerCountSet"; 
                       $.post(url,{id:count},function(h){ 
                            document.getElementById("jspid").innerHTML=h; 
                            }); 
                      */
                      
                      /*//method 2
                                       $("#divID").load("A.html");
                      */
                      
                      /* method 3  ajax   
                             function queryUserMap(roleId){
                                  
                                $.ajaxSetup ({
                                     cache: false //close AJAX cache
                                  });
                                
                                $("#div4").load("queryUserMap.action"+roleId, callback());
                             }
                      */

 

相关文章:

  • 2022-03-02
  • 2022-12-23
  • 2021-12-14
  • 2022-01-07
  • 2021-06-20
  • 2022-12-23
  • 2022-12-23
猜你喜欢
  • 2021-11-29
  • 2021-12-18
  • 2021-07-19
  • 2022-12-23
  • 2021-07-25
  • 2022-12-23
  • 2022-12-23
相关资源
相似解决方案