jsp页面中表单action=“”为什么表单依然可以提交
action=“”的话,提交给本URL
所谓本地址,你抬头看看浏览器地址栏就知道了。
果form中的提交的type是submit型,那么点击就会提交。不论你的action是否为空,建议楼主将提交按钮 使用 <button> 或者 <input type="button" /> 或者 在form哪里 加以个 <form action="" onsubmit="return _check();">xxxx</form> 其中的_check()为js,你在里面控制form的提交(诸如:如果action为""那么return false;)。这样就做到了控制form的提交。
|