gpt4 book ai didi

javascript - 如何在此 HTML 中选择下一个 "select"(下拉菜单)?

转载 作者:行者123 更新时间:2023-11-29 18:30:45 25 4
gpt4 key购买 nike

我的 html 是:

    <tr>
<td><select id = "delAppSelectApp" name="delAppSelectApp"><option value="--Select--"> --Select--</option></select></td>
<td><select id = "delAppSelectAppVers" name="delAppSelectAppVers"><option value="--Select--">--Select--</option></select></td>
<td><input type="submit" name="submitDelAppVers" id="submitDelAppVers" value="Delete Application Version" /></td>
</tr>

我的脚本是:

$(document).ready(function(){
$("#delAppSelectApp").change(function(){
alert( $(this).nextAll("select").attr("id") );
});
});

我希望窗口提醒“delAppSelectAppVers”,但这并没有发生。我究竟做错了什么 ?我什至尝试过“ sibling ”功能。

最佳答案

$(document).ready(function() {
$("#delAppSelectApp").change(function() {
alert( $(this).closest("td").next().find('select').attr("id") );
});
});

这是一个演示:http://jsfiddle.net/7twmJ/

关于javascript - 如何在此 HTML 中选择下一个 "select"(下拉菜单)?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8698278/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com