<form name="home" action="" onsubmit="return Validateform();" method="post">
<input type="text" name="receiver" />
<input type="submit" value="send" name="send" />
</form>
如果文本框在提交时未以92开头,则提醒的javascript是什么?
答案 0 :(得分:2)
我建议您阅读JavaScript教程。试试here。
要回答你的问题,这可能会有效。如果你想知道为什么你被贬低 - 要求人们为你编写你的代码通常被认为是不好的形式,所以尽量不要在将来这样做。 :)
function Validateform(e) {
if (document.getElementsByName('receiver')[0].value.substring(0, 2) !== "92") {
e.preventDefault();
alert("Alert");
}
}