html submit 提交怎么用?
答案:1 悬赏:0 手机版
解决时间 2021-03-28 21:18
- 提问者网友:浪荡绅士
- 2021-03-28 04:31
html submit 提交怎么用?
最佳答案
- 五星知识达人网友:躲不过心动
- 2021-03-28 05:26
最常见的就是type="submit"的按钮触发form的onsubmit事件。
function validateForm(){
if(document.reply.title.value== ""){ //通过form名来获取form
alert("pleaseinput the title!");
document.reply.title.focus();
returnfalse;
}
if(document.forms[0].cont.value== ""){ //通过forms数组获取form
alert("pleaseinput the content!");
document.reply.cont.focus();
returnfalse;
}
returntrue;
}
function validateForm(){
if(document.reply.title.value== ""){ //通过form名来获取form
alert("pleaseinput the title!");
document.reply.title.focus();
returnfalse;
}
if(document.forms[0].cont.value== ""){ //通过forms数组获取form
alert("pleaseinput the content!");
document.reply.cont.focus();
returnfalse;
}
returntrue;
}
我要举报
如以上问答信息为低俗、色情、不良、暴力、侵权、涉及违法等信息,可以点下面链接进行举报!
大家都在看
推荐资讯