是否可以链接到网页上的div?例如,
<html>
<body>
Here is some content I don't care about
<div class="stuff">
Here is some content I want. Blah blah. It may change from time to time
</div>
Here is more content I don't care about and do not want to see when this link is clicked
</body>
</html>
是否有超链接仅显示“其他内容”的内容?
有关进一步说明,如果有人要创建此链接,则该页面中的任何其他内容都不会显示在iframe中。
答案 0 :(得分:3)
您可以使用jQuery .load()调用来获取网页的片段并将其加载到您的网页上:
$('#result').load('your-page.html .stuff');
答案 1 :(得分:0)
简短的回答是:否
较长的答案涉及到要隐藏内容的页面上的一堆JavaScript(即,您无法将其发送到第三方网站,如果它是您自己的网站,您几乎肯定会更好创建一个可以调用的单独URI