jQuery - 从其他网站提取内容

时间:2017-03-16 09:55:16

标签: javascript jquery html

是否可以仅使用JS / jQuery从其他网站提取内容?例如:

检索StackOverflow上标有html的问题数 该号码位于http://stackoverflow.com/questions/tagged/html的{​​{1}},其中包含div类。

1 个答案:

答案 0 :(得分:0)

试试这个在其他网站上打开网站:

 <div> 
    <object type="text/html" data="http://validator.w3.org/" width="800px" height="600px" style="overflow:auto;border:5px ridge blue">
    </object>
 </div>

<script>
    $("#mydiv")
        .html('<object data="http://your-website-domain"/>');
</script>

如果您想获得价值而不显示:

 $( "#yourElement" ).load( "http://stackoverflow.com/questions/tagged/html #summarycount al" );

http://api.jquery.com/load/
可能需要将它放在ajax中。