过去我使用的是 iframe,但它完整显示了所有网页 url 内容。
例如:我将以下代码保存在名为“trial.html”的文件中:
<iframe src="http://stackoverflow.com/unanswered" width=1100 height=1500></iframe>
<iframe src="http://stackoverflow.com/questions" width=1100 height=1500></iframe>
当我在 Firefox 中加载我的文件“trial.html”时,它会正确显示两个 url。;)
但是,例如,我希望我的网页只显示第一个 url 的右上角“投票”部分(灰色)。我注意到它有以下代码:
<div class="module">
<div class="summarycount" style="text-align: left;">11,308</div>
<p>questions with <b style="color: maroon;">no upvoted answers</b></p>
<p>The highest voted unanswered questions appear first, then the most recent ones. </p>
</div>
是否可以只显示部分<div class="summarycount"
或 <div class="module">
部分?
提前致谢 ;)