私はこのコードを持っています:
$("div[id^='intCell']").mouseover(function() {
$(this).css({ "border:","1px solid #ff097c"});
}).mouseout(function() {
$(this).css({"border:","1px solid #000"});
})
しかし、私はそれを機能させることができません!HTMLには、intCell_1、intCell_2などのIDを持つためにphpによって生成されるdivのリストがあります。何かアイデアはありますか?