$(function(){
$(".test").each(function(){
test();
});
});
function test(){
$(this).css("border","1px solid red").append(" checked");
}
爲什麼這不起作用?我錯過了什麼? 這是我測試的HTML:jQuery與每個()和自定義函數的問題
<p>test</p>
<p>test</p>
<p class="test">test</p>
<p>test</p>
太棒了!非常感謝你! 這就是我需要的! – thetester 2010-02-01 11:44:38