我的 jquery 脚本参考是:
<script src="http://code.jquery.com/jquery-latest.min.js" type="text/javascript"></script>
<script src="http://code.jquery.com/ui/1.9.1/jquery-ui.js" type="text/javascript"></script>
我正在使用 Chrome 版本 23.0.1271.64 m - 我在第 338 行遇到错误
})( jQuery ); //--> line 338 is highlighted
这对我来说是第一次,正在寻找答案。
我正在学习如何使用 API 并拥有一个简单的网页
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<meta http-equiv="CACHE-CONTROL" content="NO-CACHE" />
<meta http-equiv="PRAGMA" content="NO-CACHE" />
<script src="http://code.jquery.com/jquery-latest.min.js" type="text/javascript"></script>
<script src="http://code.jquery.com/ui/1.9.1/jquery-ui.js" type="text/javascript"></script>
<script type="text/javascript">
$(function() {
$( "#edit-user" )
.button()
.click(function() {
$( "#dialog-form" ).dialog( "open" );
});
});
</script>
</head>
<body>
<button id="edit-user">Edit User</button>
<div id="dialog-form" title="Radio Dialog">
<form>
<fieldset>
<input type='radio' value='A' name='myRadio'>A
<input type='radio' value='B' name='myRadio'>B
<input type='radio' value='C' name='myRadio'>C
</fieldset>
</form>
</div>
</body>
</html>