|
热门文章 |
|
|
|
|
提交表单前弹出确认对话框(三) |
来源:中国站长天空 更新时间:2009/12/3 1:03:52 阅读次数: 我要投稿 |
|
<!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>之间--> <form name="form1" method="post" action="http://www.zzsky.cn"> <input type="text" name="text"> <input type="submit" name="submit" value="提交" onclick="return(confirm('确认要提交本表单吗?'))"> </form> </body> </html> |
|
上一篇文章: 提交表单前弹出确认对话框(二)下一篇文章: 控制多选框的选择个数 |
|
|