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.
对于我的项目,我加载一个 html 文件以div通过直接将 html 内容插入到 s来填充divs。问题是,我有很多元素,其中包含相同 id 的 div。这会导致选择正确的问题,即$('#div_name'). 它总是找错一个。
div
$('#div_name')
例子
我怎么解决这个问题。
更新
$('.to_be_filled:eq(1)').children('#graph_container').css('background-color', 'red'); $('.to_be_filled:eq(2)').children('#graph_container').css('background-color', 'green');
由于 eq() 提供的索引是从零开始的,要选择第 2 和第 3,您需要选择 eq(1),eq(2)...
这是小提琴