Tôi có trường đầu vào này,
<input name="question"/>tôi muốn gọi hàm IsEmpty khi gửi nhấp vào nút gửi.
Tôi đã thử mã bên dưới nhưng không hoạt động. bất kỳ lời khuyên?
<html>
<head>
<title></title>
<meta http-equiv="Content-Type" content="text/html; charset=unicode" />
<meta content="CoffeeCup HTML Editor (www.coffeecup.com)" name="generator" />
</head>
<body>
<script language="Javascript">
function IsEmpty() {
if (document.form.question.value == "") {
alert("empty");
}
return;
}
</script>
Question: <input name="question" /> <br/>
<input id="insert" onclick="IsEmpty();" type="submit" value="Add Question" />
</body>
</html>
return false... vv vv