使用 jquery 计算 iframe 内的标签数
iframe src 是这样的:- 并且内容是动态的。如何找出a中的
或
或
标签的数量内嵌框架 在服务器端或客户端使用javascript? -谢谢
iframe src is like this:-<iframe src="http://mysite.com/testing.php?id=7632762"></iframe>
and the content is dynamic.How to find out number of <div>
or <li>
or <p>
tags inside a iframe
by using javascript on server side or client side ?
-Thank you
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
假设 iframe src 与源页面位于同一域并且已完成加载其资源,那么您可以使用以下命令:
On the assumption that the iframe src is on the same domain as the source page and has finished loading its resource then you can use the following:
对于其他元素也是如此。如果你在 iframe 中添加一些 id 会更容易。
Similarly for other elements. It would be easier if you add some id to the iframe.