|
热门文章 |
|
|
|
|
提交表单前弹出确认对话框(一) |
来源:中国站长天空 更新时间:2009/12/3 1:00:27 阅读次数: 我要投稿 |
|
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="www.w3.org/1999/xhtml"> <head> <title>提交表单前弹出确认对话框(一)</title> <meta http-equiv="content-Type" content="text/html;charset=gb2312"> </head> <body> <!--把下面代码加到<body>与</body>之间--> <script language="Javascript"> function CheckForm() { if(confirm("确认要提交本表单吗?")==true) return true; else return false; } </script> <form name="form1" method="post" action="http://www.zzsky.cn" onSubmit="return CheckForm();"> <input type="text" name="text"> <input type="submit" name="submit" value="提交"> </form> </body> </html> |
|
上一篇文章: 激活页面立即获得焦点的文本框下一篇文章: 提交表单前弹出确认对话框(二) |
|
|