DOM--form

form对象是用于向服务器提交数据时用的,它的默认事件为onsubmit。在此事件中加入return false表示不提交数据,即拒绝向处执行,

如果表单中旋转了submit的按钮,点击submit的按钮后也会自动激活form中的onsubmit事件.

<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
    <title></title>
</head>
<body>
    <form id="form1" runat="server" action="second.aspx" method="get" onsubmit="return false;" >//用return false后点击无反应
    <div>
    <input type="submit" value="提交内容" />
    </div>
    </form>
</body>
</html>

 

posted on 2013-05-20 16:32  天上星  阅读(174)  评论(0编辑  收藏  举报

导航