JavaScript 出现函数未定义问题
发布网友
发布时间:2023-06-19 16:11
我来回答
共3个回答
热心网友
时间:2024-02-17 14:53
1、你的script某处少了一个R
2、doit改为doit()
3、别忘了加分
<html>
<head>
<link href="www.zc114.net" rel="stylesheet" type="text/css" />
</head>
<script type="text/javascript">
function selet()
{
return window.selection;
}
function doit()
{
var word=selet();
alert("What you have choose is"+word);
}
</script>
<body>
<h1>caption 1</h1>
<p>paragraph</p>
<hr/>
<pre>using pre tab
</pre>
<hr/>
<input type="button" value="choose sth. the click me!" onclick="javascript:doit()"></input>
</body>
</html>
热心网友
时间:2024-02-17 14:53
<html>
<!-- 修改第1个地方 type="text/javascipt" 改为 type="text/javascript" -->
<script type="text/javascript">
function selet()
{
return window.selection;
}
function doit()
{
var word=selet();
alert("What you have choose is"+word);
}
</script>
<body>
<h1>caption 1</h1>
<p>paragraph</p>
<hr/>
<pre>using pre tab
</pre>
<hr/>
<!-- 修改第2个地方 onclick="doit()"
还有, input标签</input>这样结束标记是不对的 这样:<input type="button" ... />
-->
<input type="button" value="choose sth. the click me!" onclick="doit()"></input>
</body>
</html>
热心网友
时间:2024-02-17 14:54
写全一点看看,改成
<input type="button" value="choose sth. the click me!" onclick="javascript:doit();"></input>