如何用jQuery填充两个输入的输入?

时间:2016-09-04 08:20:50

标签: jquery html css

我有五个输入,一个名为check的类。如何使用 jQuery 仅填充五个输入的输入?

我不能使用验证器 jQuery 库。

这是html文件:

<input class="cheque" id="chmomtaz" placeholder="ریال" type="text" style="width: 100%" >
<input class="cheque" id="chkimia" placeholder="ریال" type="text" style="width: 100%" >
<input class="cheque" id="chrash" placeholder="ریال" type="text" style="width: 100%" >
<input class="cheque" id="chsandal" placeholder="ریال" type="text" style="width: 100%" >
<input class="cheque" id="chchob" placeholder="ریال" type="text" style="width: 100%" > 

2 个答案:

答案 0 :(得分:1)

@hasan movahed你的解决方案会起作用但是,如果我理解你的需求,就这样:

$('.cheque').on("keyup", function() {
    $('.cheque').not(this).val('');
});

这将删除所有其他输入内容而不禁用它们

答案 1 :(得分:0)

我发现了这个问题。

试一试:

$('.cheque').on("keyup", function() {
  $('.cheque').not(this).prop('disabled', this.value.length === 0 ? false : true);
});