form的OnSubmit和input type=image使用介绍_XHTML教程-查字典教程网
form的OnSubmit和input type=image使用介绍
form的OnSubmit和input type=image使用介绍
发布时间:2016-12-27 来源:查字典编辑
摘要:这里如果有那么直接按这个图像后会提交表单,如果有OnSubmit会先执行这个函数,如果返回false则不提交表单!functiontest(...

这里如果有<input type="image"> 那么直接按这个图像后会提交表单,

如果有OnSubmit会先执行这个函数,如果返回false则不提交表单!

<span><script language=javascript>

function test()

{

alert("测试!")

}

</script>

<form name="F1" onSubmit="fuck();">

<input type="image" src="" width="51" height="20">

</form></span>

另外一个示例:

<html>

</head>

<script language="javascript">

function checkEmpty(form){

for(i=0;i<form.length;i++){

alert(form.elements[i].value);

if( form.elements[i].value=="" ){

alert("表单信息不能为空");

return false;

}

}

}

</script>

<body>

<form name="form" method="post" onSubmit="return checkEmpty(form)">

<input name="name" type="text" size="17">

<input name="password" type="password" size="17">

<input type="image" src="" width="51" height="20">

<input type="button" value="AAA" />

</form>

</body>

<html>

相关阅读
推荐文章
猜你喜欢
附近的人在看
推荐阅读
拓展阅读
  • 大家都在看
  • 小编推荐
  • 猜你喜欢
  • 最新XHTML学习
    热门XHTML学习
    网页设计子分类