我想使用 jquery 比较两个文本框的数据,就像我们在创建电子邮件帐户时比较密码和确认密码一样。我仍然有以下东西。
CSS
.test {
display:none;
}
HTML
<input type="text" name="t1" />
<input type="text" name="t2" />
<label class="test" name="lblerror">Error</label>
jQuery
$("#t2").click(function () {
if ($("#t1").val() === $("#t2").val()) {} else {
$("#lblerror").removeClass("test");
}
});
请帮助我,我怎样才能比较这两个字符串,而只留下第二个名为t2
.
提前致谢。