我有五个输入和一个名为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%" >

最佳答案

@hasan movahed您的解决方案将起作用,但是,如果我了解您的需求,可以这样:

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


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

10-06 00:42