「jquery入門」ready()で要素を操作するサンプル
方法1
$(function() {
$('#test’).each(function() {
console.log($(this));
});
});
方法2
$(document).ready(function() {
$('#demo’).each(function() {
console.log($(this));
});
});
Coding Changes the World
方法1
$(function() {
$('#test’).each(function() {
console.log($(this));
});
});
方法2
$(document).ready(function() {
$('#demo’).each(function() {
console.log($(this));
});
});