我想<h3>
从外部网站定义类的 div 加载元素。我特别想获得标题。外部网站不是我的,我可以更改其 html 中的任何内容。这个网站的部分html是这样的
<div id="container">
<!-- some other divs -->
<div class="content sub">
<div class="box blog">
<h3><a href="http://www.somelink.com/page1/" title="">Title 1</a></h3>
<p>Some text here... bla bla bla...</p>
<a href="http://www.somelink.com/page1/" title="" class="read_more">read more</a>
</div>
<div class="box blog">
<h3><a href="http://www.somelink.com/page2/" title="">Title 2</a></h3>
<p>Some text here... bla bla bla...</p>
<a href="http://www.somelink.com/page2/" title="" class="read_more">read more</a>
</div>
<div class="box blog">
<h3><a href="http://www.somelink.com/page3/" title="">Title 3</a></h3>
<p>Some text here... bla bla bla...</p>
<a href="http://www.somelink.com/page3/" title="" class="read_more">read more</a>
</div>
</div>
</div>
我想在 jQuery Mobile 页面中加载标题 - 在其内容 div 中。
有没有办法做到这一点?