<head>
<script type="text/javascript">
alert("hello")
</script>
</script>
</head>
需要准备的材料分别有:电脑、浏览器、html编辑器。
1、首先,打开html编辑器,新建html文件,例如:index.html,输入问题基础代码。
2、在index.html中的<body>标签中,输入js代码:
function fun() {
alert('click success!')
}
3、浏览器运行index.html页面,此时点击按钮弹出了提示框。
<script language=jscript>function mysubmit(theform) {
if (confirm("你确定要提交吗?")) {
return (true)}
else { return (false)}
}
</script>
<form METHOD="POST" name="form1" action="1.htm"
onsubmit="return mysubmit(this)">
您的姓名 <input type="text" name="T1" size="20"><BR>
<input type="submit" value="提交" name="B1">
</form>