吴尧
2016-02-10 10:26
<!DOCTYPE HTML>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>系好安全带,准备启航</title>
<!--引入外部文件的方式-->
<script type="text/javascript">
document.write("系好安全带,准备启航--目标JS");
function:con()
{
var mychar=confirm("准备好了吗")
if (mychar==true)
{
document.write("gongxini");
}
else
{document.write("sb");}}
</script>
</head>
<body>
<input type="button" value="dianwo" onclick="con()">
</body>
</html>
代码问题比较多,除了楼上两位说的,你的引号也有问题,应该是英文引号
function:con()
这个地方的”:“去掉换成空格就好了
定义函数:function con() 没有冒号;
定义变量mychar那句没加分号
JavaScript进阶篇
468061 学习 · 21891 问题
相似问题