jsp 关键代码如下:function CheckSubmit(){ //验证实例名称 var sname=$('#name').val().trim(); if(sname=='') { alert("实例名称为必填项!"); return false; }}---------------------------------------------------------------------------------<form method="post" action="/create/save" onsubmit="return CheckSubmit();" id="formupdate"> <table style="width: 100% ;height:80px"> <tr> <td width="70">实例名称:</td> <td width="235"> <input type="text" id="name" name="name" tabindex="1" /></td> </tr> </table> <input type="submit" value="提交" id="SubmitButton" /> </form> 在火狐及google浏览器中运行时,都能执行 form 表单的验证功能。 但是在IE9 浏览器下,就跳过了这个验证。求解!
添加回答
举报
0/150
提交
取消