好的,我很难过。我有jquery工作的页面,但由于某种原因,这不是。
<html>
<head>
<script src="http://code.jquery.com/jquery-latest.js"></script>
</head>
<body>
</body>
<script>
jQuery(function($) { alert() })(jQuery);
</script>
</html>
我怀疑这是我用于jquery的链接,但是就绪功能没有触发,我看不出原因。
答案 0 :(得分:0)
试试这种方式
<script>
$(document).ready(function(){
alert('foo')
});
//OR
$(function() {
alert('foo');
});
</script>
答案 1 :(得分:0)
它:
jQuery(document).ready(function()
{
alert('alert');
});
答案 2 :(得分:-1)
$( function() { alert("blah!!"); });
或
jQuery( function() { alert("blah!"); });
或
$(document).ready( function() { });
或
$(window).load( function() { });
或
jQuery(window).load( function() { });
或
jQuery(document).ready( function() { });
你有成千上万的选择!
答案 3 :(得分:-1)
试试这个有效!
<html>
<head>
<script src="http://code.jquery.com/jquery-latest.js"></script>
</head>
<body>
</body>
<script type="text/javascript">
$(function () {
alert("test");
});
</script>
</html>