为什么我的这个javascript不能执行啊。请高手指点
发布网友
发布时间:2024-02-23 15:07
我来回答
共3个回答
热心网友
时间:2024-12-15 04:00
你的语句有两个问题,修改后就可以运行了
1. 下面这行最后的分号应该是半角
window.alert("请输入数据");
2. 下面这行拼写错误,ture应为true
return ture;
热心网友
时间:2024-12-15 04:00
<html>
<head>
<title>javascripttest</title>
<script type="text/javascript">
function userCheck()
{
if(document.form1.t1.value=="")
{
window.alert("请输入数据");
return false;
}
return ture;
}
</script>
</head>
<body>
<form name="form1" method="post">
输入数据:<input type="text" name="t1">
<input type="submit" name="Submit" value="提交" onsubmit="return userCheck()">
</form>
</body>
</html>
这样写。。。
热心网友
时间:2024-12-15 04:01
<form name="form1" method="post">
输入数据:<input type="text" name="t1">
<input type="button" name="Submit" value="提交" onclick="serCheck();">
</form>
这样写试试看呢