对于带有警报的简单表单,询问是否正确填写了字段,我需要执行以下操作的函数:
单击带有两个选项的按钮时显示警报框:
我认为JavaScript确认会起作用,但我似乎无法弄清楚该怎么做。
我现在拥有的代码是:
function show_alert() { alert("xxxxxx"); } <form> <input type="image" src="xxx" border="0" name="submit" onclick="show_alert();" alt="PayPal - The safer, easier way to pay online!" value="Submit"> </form>
一个简单的 内联JavaScript确认 就足够了:
<form onsubmit="return confirm('Do you really want to submit the form?');">
除非您正在执行 验证 ,否则不需要 外部函数 ,可以执行以下操作: __
<script> function validate(form) { // validation code here ... if(!valid) { alert('Please correct the errors in the form!'); return false; } else { return confirm('Do you really want to submit the form?'); } } </script> <form onsubmit="return validate(this);">