很好地了解 HTML,我正在尝试学习 JQuery。我在一个JQuery 站点上找到了 .change 函数,它完全符合我的要求。
理想情况下,我希望 test1 和 test2 只相互影响,而 test3 和 test4 只相互影响,依此类推。
现在 test2 和 test4 同时影响 test1 和 test3
这是我的代码:
<select id="test1" name="sweets" multiple="multiple">
<option>Chocolate</option>
<option selected="selected">Candy</option>
<option>Taffy</option>
<option selected="selected">Caramel</option>
<option>Fudge</option>
<option>Cookie</option>
</select>
<div id="test2"></div>
<script>
$("select#test1").change(function () {
var str = "";
$("select option:selected").each(function () {
str += $(this).text() + " ";
});
$("div#test2").text(str);
})
.change();
</script>
<select id="test3" name="sweets" multiple="multiple">
<option>Chocolate</option>
<option selected="selected">Candy</option>
<option>Taffy</option>
<option selected="selected">Caramel</option>
<option>Fudge</option>
<option>Cookie</option>
</select>
<div id="test4"></div>
<script>
$("select#test3").change(function () {
var str = "";
$("select option:selected").each(function () {
str += $(this).text() + " ";
});
$("div#test4").text(str);
})
.change();
</script>
我尝试将其与 ID 分开,但还没有完全实现。我怎样才能让它正常工作?