下面这个代码就是检测输入框有字才可以点击,缺点是只能验证1个输入框
但是我的页面排版像微博一样,同一个页面有多个输入框。求教大神怎么改才可以适用于多个输入框呢?
http://jsbin.com/gunigaxuwa/1/edit?html,css,js,output
迷茫2017-04-10 14:48:29
思路:
<input type="text" name="title" id="title" value="title" />
<input type="text" name="name" id="name" value="name" />
<input type="text" name="content" id="content" value="content" />
<input type="text" name="phone" id="phone" value="phone" />
<button id="button">点我</button>
$('#button').click(function(){
var json = {'title':'标题必填','name':'姓名必填','content':'内容必填','phone':'电话必填'};
for (var i in json) {
if ($('#'+i).val() == '') {
console.log(json[i]);
}
}
})
黄舟2017-04-10 14:48:29
多谢各位,刚才又研究了一下,也搞出一个结果
http://jsbin.com/sucaxekopa/1/edit?html,css,js,output
用for循环去找对应的输入框然后再判断