码迷,mamicode.com
首页 > Web开发 > 详细

动态获取html页面的内容,而且取当中的某块元素的方法

时间:2017-07-28 18:25:43      阅读:169      评论:0      收藏:0      [点我收藏+]

标签:元素   workspace   lan   webapp   pop   sign   function   console   页面   

??
$.ajax({
  url: "http://192.168.1.59:8888/app-tpl-webapp/tpl/design.html",
  async:false,
  type:‘post‘,
  dataType:‘html‘,
  success:function(data) {
      console.log("-------------------------------------------------");
      var htmlTextText = $(‘div‘).html(data);
      console.log($(‘div‘).html(data).eq(1).find("#workspace-body"));
      $(‘div‘).html(data).eq(1).find("link,script,style").each(function(index,domEle){
       //$("head").append($(domEle));
       console.log(domEle);
      });
      console.log("-------------------------------------------------");
   //自己主动为布局文件的html中加上id
     }
  });

动态获取html页面的内容,而且取当中的某块元素的方法

标签:元素   workspace   lan   webapp   pop   sign   function   console   页面   

原文地址:http://www.cnblogs.com/claireyuancy/p/7251636.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!