私はsizzleの例を使っています。最後にコードの最後にwindow.onloadがあります。jQueryのwindow.onload
これはどういう意味ですか?
私のコードは次のようである:
var init = function() {
var trail = Sizzle;
var foo = trail('.foo');
foo[0].onmouseover = function() {
this.style.backgroundColor = (this.style.backgroundColor.indexOf('blue') === 0) ? 'yellow' : 'blue';
};
foo[1].onmouseover = function() {
this.style.backgroundColor = (this.style.backgroundColor.indexOf('red') === 0) ? 'yellow' : 'red';
jQuery(foo[1]).after("<b>Hello</b>");
}
foo[2].onmouseover = function() {
this.style.backgroundColor = (this.style.backgroundColor.indexOf('green') === 0) ? 'yellow' : 'green';
jQuery(foo[3]).toggle("slow");
jQuery('b').remove();
}
};
window.onload = init;
これは何を意味するのでしょうか?
関数init()は、ウィンドウ(ページ)の読み込みが完了した後にのみ動作します。 – Narek