gpt4 book ai didi

JQuery - 在下拉菜单更改时查找最接近的文本框

转载 作者:行者123 更新时间:2023-12-01 01:10:06 26 4
gpt4 key购买 nike

关于下拉列表的更改,我想使用 JQuery 查找最近/下一个文本框。产品文本框有一个动态 ID,因此我无法使用 #Product 引用它,因此我想动态查找它的 ID:

<div class="orderLineRow">
@Html.DropDownList("Products")

@Using Html.BeginCollectionItem("OrderLines")
@Html.TextBoxFor(Function(model) model.Product)
End Using
</div>

下拉菜单更改:

$(function () {
$("#Products").change(function () {
??

});

});

最佳答案

$(document).ready(function(){
$("#Products").change(function(){
$(this).siblings("input[type='text']").css("background-color", "#ff0000");
});
});

这有效。 Here's an example: http://jsfiddle.net/Hy6sX/1/

关于JQuery - 在下拉菜单更改时查找最接近的文本框,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8011397/

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