日期:2014-05-18 浏览次数:20448 次
<div id="div1"> <input type="text" id="t" /><span style="color:Red"></span> <input type="text" id="x"/><span style="color:Red"></span> <input type="button" value="按钮" onclick="fun()" /> </div>
------解决方案--------------------
function fun() {
$("#div1 input[type=text]").each(function () {
if ($(this).val() == "2") {//这里你改成验证是否是数字
$(this).next().text("提示信息");
}
})
}