gpt4 book ai didi

javascript - 选择 HTML 选择选项时启用按钮,反之亦然

转载 作者:行者123 更新时间:2023-11-29 19:27:58 25 4
gpt4 key购买 nike

我正在尝试做某事。我在 while 循环中有这个:

<tr>
<th>Order status</th>
<td>
<form class='update-status'>
<select name='status_id'class='status'>
<option selected='selected'>Order received</option>
<option value='2'>Processing</option>
</select>
<button type='submit' title='Click to update the status of this order' disabled>Update order status</button>
</form>
</td>
</tr>

我需要的是,只有选择了带有值2的选项,而反之亦然!我想我需要使用类似 $('select').on('change', function() 的东西,但我不知道如何获取选项的值。
我正在尝试:

$('.status').change(function()
{
if ($('select option:selected').val() === 2)
{
$(this).closest('tr').find( 'button' ).prop("enabled", true);
}
});

但这行不通。感谢您的帮助,谢谢!

最佳答案

尝试使用 .next()

Description: Get the immediately following sibling of each element in the set of matched elements. If a selector is provided, it retrieves the next sibling only if it matches that selector.

$(".status").change(function() {
var button = $(this).next("button");
if (this.value == "2") {
button.prop("disabled", false);
} else {
button.prop("disabled", true)
}
});

$(".status").change(function(e) {
e.preventDefault();
e.stopPropagation();
var button = $(this).next("button");
if (this.value == "2") {
button.prop("disabled", false);
} else {
button.prop("disabled", true)
};
console.log(button.prop("disabled"));
});
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script>
<table>
<tbody>
<tr>
<th>Order status</th>
<td>
<form class='update-status'>
<select name='status_id' class='status'>
<option selected='selected'>Order received</option>
<option value='2'>Processing</option>
</select>
<button title='Click to update the status of this order' disabled>Update order status</button>
</form>
</td>
</tr>
</tbody>
</table>

关于javascript - 选择 HTML 选择选项时启用按钮,反之亦然,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29835709/

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