jQuery入門–ready(fn)の使い方
サンプルコード:
jQuery(function(){});
jQuery().ready(function(){});
jQuery('#temp’).click(function() {});
$(document).ready(function(){
$(“p").click(function(){
$(this).hide();
});
});
Coding Changes the World
サンプルコード:
jQuery(function(){});
jQuery().ready(function(){});
jQuery('#temp’).click(function() {});
$(document).ready(function(){
$(“p").click(function(){
$(this).hide();
});
});