我的代码如下:
<!DOCTYPE html>
<html>
<head>
<title>Demo</title>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8"/>
<script type="text/javascript" src=”http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js”></script>
<script type="text/javascript">
$(function(){
$("#test").text("abc");
});
</script>
</head>
<body>
<span id="test"></span>
</body>
</html>
运行后显示 $ is not defined,而单独访问http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js又是可以的,请问什么原因?
<script type="text/javascript" src=”http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js”></script>
上面的代码中,src的引号你用的是全角,改为半角引号就行了。
谢谢