gpt4 book ai didi

jQuery - 如果输入与值不匹配,如何选择另一个 tr

转载 作者:行者123 更新时间:2023-12-01 07:33:15 25 4
gpt4 key购买 nike

作为一名新手,我试图完成一些事情,但陷入了困境。我试图选择一个 id 为“fc_cart_foot_tax_tbd”的表行,如果有人在“customer_state_name”类的输入字段中输入伊利诺伊州以外的州,则添加“selected”类。这是我的 HTML,不起作用。

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<title>Basic</title>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.4.4/jquery.min.js" type="text/javascript"></script>
<script type="text/javascript" charset="utf-8">
$(document).ready(function(){
//Show the tax info if the shipping state is not Illinois
$("#customer_state_name").each(function()
{
if (!$(this).html() == 'Illinois')
{
$("#fc_cart_foot_tax_tbd").addClass("selected");
}
});
});
</script>
</head>
<body>

<form action="#">
<input name="state" id="customer_state_name" value="" />
</form>

<table>
<tr id="fc_cart_foot_tax_tbd">
<td>Content here!</td>
</tr>
</table>

</body>
</html>

最佳答案

正确的一些担忧。

  1. 您正在使用 .each()作用于 ID。 ID 在文档中必须是唯一的,如果有多个项目,请使用类。
  2. 您正在使用$(this).html()获取 <input> 的值字段,使用.val()相反。
  3. 您的代码仅在进入页面时执行一次,您需要创建 .change() <input> 上的函数s,以便每次用户更改它们时它都会运行。
  4. 您正在使用(!a == b)作为你的条件,这不是你想要的,我认为你应该使用不等于 (a != b) .

jQuery:

$(document).ready(function() {
$(".customer_state_name").change(function() {
if ($(this).val() != 'Illinois') {
$("#fc_cart_foot_tax_tbd").addClass("fc_cart_foot_tax_tbd");
} else {
$("#fc_cart_foot_tax_tbd").removeClass("fc_cart_foot_tax_tbd");
}
});
});

HTML:

<form action="#">
<input name="state" class="customer_state_name" value="" />
</form>

<table>
<tr id="fc_cart_foot_tax_tbd">
<td>Content here!</td>
</tr>
</table>

关于jQuery - 如果输入与值不匹配,如何选择另一个 tr,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4371133/

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