我在一个表格中有很多选择。
我想在表单中添加几个选项“其他”。When "Other" is selected it shows a hidden input.
$(document).ready(function(){
$(".SelectOther").append('<option value=-1>Other</option>');
$(".OtherDiv").hide();
$(".SelectOther").change(function()
{
if($(".SelectOther option:selected").text() == "Other")
{
$(".OtherDiv").show("slide", { direction: "up" }, 1000);
}
else
{
$(".OtherDiv").hide("slide", { direction: "down" }, 1000);
}
});
});
尚未测试此代码,但这会打开所有隐藏的“OtherDiv”
所有选择都在表中的 TD 内。
如何确保选择“其他”时仅显示该 TD 中的隐藏输入?