JQuery ready似乎没有激发

时间:2013-01-31 06:23:52

标签: jquery

好的,我很难过。我有jquery工作的页面,但由于某种原因,这不是。

<html>
<head>
<script src="http://code.jquery.com/jquery-latest.js"></script>
</head>
<body>
</body>
<script>
jQuery(function($) { alert() })(jQuery);
</script>
</html>

我怀疑这是我用于jquery的链接,但是就绪功能没有触发,我看不出原因。

4 个答案:

答案 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>