Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
例如,如果我使用 jQuery 进行 ajax 调用并在选项卡中执行此操作,那么我想在不同的选项卡中调用同一页面,这实际上只是一个 div。
然后,每个页面都会将相同的标签 ID 带到页面上。
使用 iframe 而不是 ajax 调用的唯一解决方案是?
我基本上希望每个标签都有相同的标签和 ID。
谢谢
虽然这样做是无效的,但您仍然可以侥幸逃脱...我想您只需要在引用 ID 时指定您所指的对象...
$('#div1 #itemId')和$('#div2 #itemId')
$('#div1 #itemId')
$('#div2 #itemId')
我从来没有尝试过这个,因为它的编码不好。
一个更好的选择是给元素 CLASS 名称,而不是 ID - 您将能够以有效的方式完成此操作。
$('#div1 .itemId')和$('#div2 .itemId')
$('#div1 .itemId')
$('#div2 .itemId')