关于符号“”和' '
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>计时器单次</title>
<script>
function time()
{
setTimeout("alert("测试")",3000)
}
</script>
</head>
<body>
<input type="button" value="单次" onmousevr="time()">
</body>
</html>
为什么这个测试用""不能使用,平时不用setTIMEout的时候 单独ALert(“”)可以也可以alert(‘’),请问怎么回事