$(function(){
$(".test").each(function(){
test();
});
});
function test(){
$(this).css("border","1px solid red").append(" checked");
}
なぜこれが機能しないのですか?私は何が欠けていますか?これは私のテストHTMLです:
<p>test</p>
<p>test</p>
<p class="test">test</p>
<p>test</p>