使用以下代碼: - 當DOM準備就緒時,是否存在假設爲警報消息「hi」?DOM Ready的預期警報('hi')?
HTML: -
//including jquery
<script data-require="[email protected]"
data-semver="1.6.4"
src="//cdnjs.cloudflare.com/ajax/libs/jquery/1.6.4/jquery.min.js">
</script>
<script>
$(document).ready(function(){
$('.popbox').popbox(); // doesn't this execute the javascript function '$.fn.popbox' ?
});
</script>
<div class='popbox'> hi </div>
的JavaScript包括: -
(function(){
$.fn.popbox = function(){
alert('hi');
}
}).call(this)
它大概加載在格蘭錯誤的順序。 http://jsfiddle.net/tzjW5/5/ –