我在互联网上找到了这个代码。它只是警告从元素中选择的选项。
我有多个元素,我需要来自特定元素的信息,让我们说一个id为#34; one"。如何将此限制添加到我的代码中。
$("select").change(function () {
var str = "";
$("select option:selected").each(function () {
str += $(this).text() + " ";
});
alert(str);
})
.trigger("change");
由于
答案 0 :(得分:0)
如果您只希望jQuery为ID" one"的元素运行,请添加ID选择器:
$("select#one").change(function () {
var str = "";
$("select#one option:selected").each(function () {
str += $(this).text() + " ";
});
alert(str);
})
.trigger("change");
答案 1 :(得分:0)
你应该改变
$("select option:selected").each(function () {
到
$(this).find("option:selected").each(function () {