如何区分同一个jsp上存在的两个iframe
我在 jsp 页面中添加了两个 iframe,具有相同的名称、显示名称等。我有两个不同的 url,必须在每个 iframe 中将其设置为目标 url。如何区分这两个 iframe 并设置目标 url?
I have two iframes added in a jsp page, with same name, display name and so on. I am having two different urls which has to be set as target urls in each of these iframes.How can I differentiate these two iframes and set the target urls?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以使用大多数 html 元素(包括 iframe)的标准 id 属性
You can use the id attribute which is standard for most html elements (iframe included)
您可以给它们一个不同的
id
,以便您可以通过JavaScript获取它们。但实际上,的
名称
应该是唯一。相应地解决这个问题。这样您就可以通过target
中的名称来区分它们。You could give them a different
id
so that you can grab them by JavaScript. But, actually, thename
of the<iframe>
is supposed to be unique. Fix that accordingly. This way you can distinguish them by their name in thetarget
.