gpt4 book ai didi

javascript - 比较 50 对输入文本框

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

如果我有 50 对输入文本框,即

<input type="text" id="name_0" /><input type="text" id="name_1" />
<input type="text" id="dept_0" /><input type="text" id="dept_1" />

...

<input type="text" id="age_0" /><input type="text" id="age_1" />
<input type="text" id="weight_0" /><input type="text" id="weight_1" />

即其中的 50 个变量。

当页面加载时,我用相同的数据填充每一对。

检查 _0 是否不同于 _1 的最佳方法是什么?

然后返回一条消息,显示哪对已更改。

一旦更改了值并单击了按钮,就会进行比较。

最佳答案

$("input[type=text]").each(function () {
var $this = $(this);

if ( /_0$/.test(this.id) ) {
if ( $this.val() != $this.next("input").val() ) {
$this.css("color", "red"); // or whatever
}
}
});

关于javascript - 比较 50 对输入文本框,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6678528/

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