如何用javascript实现表单提交确认?内详 5
用户填写一个表单,然后点提交的时候,会弹出确认对话框,确认对话框包含用户刚才在表单中填写的数据,如果用户点确认则表单提交,点取消,则重新填写。这样的功能,如何用javas...
用户填写一个表单,然后点提交的时候,会弹出确认对话框,确认对话框包含用户刚才在表单中填写的数据,如果用户点确认则表单提交,点取消,则重新填写。
这样的功能,如何用javascript实现?
谢谢 展开
这样的功能,如何用javascript实现?
谢谢 展开
1个回答
展开全部
function confirmw()
{
if(confirm(document.formname.abc.value))
{
return true;
}
else
{
return false;
}
}
<form name="formname" onsubmit="return confirmw();">
<input type="text" name="abc" />
<input type="submit" name="submit" value="submit" />
</form>
大概这样吧。你学过点JAVASCRIPT的话就应该看得明白我写什么。
{
if(confirm(document.formname.abc.value))
{
return true;
}
else
{
return false;
}
}
<form name="formname" onsubmit="return confirmw();">
<input type="text" name="abc" />
<input type="submit" name="submit" value="submit" />
</form>
大概这样吧。你学过点JAVASCRIPT的话就应该看得明白我写什么。
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询