开始的时候是显示下面的错误
Cannot use 'in' operator to search for 'display' in undefined
后来莫名其妙就变成了下面的错误
Uncaught SyntaxError: Unexpected token ILLEGAL
但是如果我把代码完整复制到w3school测试代码的页面里,除了把jq文件的引用地址改成它网站的引用地址以外什么也不该,就可以正常的运行
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>无标题文档</title>
</head>
<body>
</body>
<script src="JS/gongyong/jquery-1.11.3.min.js"></script>
<script>
$(document).ready(function()
{
$(this).toggle(function()
{
alert("1");
},function()
{
alert("2");
});
});
</script>
</html>