主题:谁来帮忙看看这段代码的问题出在哪里?
以下这段代码编好后运行不了,不知问题出在哪里,请高手指教
<html>
<head>
<title>无标题文档</title>
<script language="javascript">
function Check(form){
for(i=0;i<form.t1.value.length;i++){
if(form.t1.value.charAt(i)=="s"){
alert(“找到目标!”);
}else{
alert("没有发现情报!");
};
};
}
</script>
</head>
<body>
<form name="form1" >
<textarea name="t1" ></textarea>
<input type="button" onclick="Check(this.form);" value="查找">
</form>
</body>
</html>
<html>
<head>
<title>无标题文档</title>
<script language="javascript">
function Check(form){
for(i=0;i<form.t1.value.length;i++){
if(form.t1.value.charAt(i)=="s"){
alert(“找到目标!”);
}else{
alert("没有发现情报!");
};
};
}
</script>
</head>
<body>
<form name="form1" >
<textarea name="t1" ></textarea>
<input type="button" onclick="Check(this.form);" value="查找">
</form>
</body>
</html>