私は、これはばかげた質問セットの背景色、ページのロード
であれば、私はテーブルの色の背景を変更する方法を多くの方法を見てきましたが、特定の行があるときにapoligiseのjQueryの初心者ですクリックまたはホバリング、しかし、私は白のページの読み込み時にに私のテーブルの背景色を設定したい。
私が見たが、このしようとテーブルの背景色を設定するには
$(function() {
$('tr').hover(function() {
$(this).css('background-color', '#FFFF99');
$(this).contents('td').css({'border': '1px solid red', 'border-left': 'none', 'border-right': 'none'});
$(this).contents('td:first').css('border-left', '1px solid red');
$(this).contents('td:last').css('border-right', '1px solid red');
},
function() {
$(this).css('background-color', '#FFFFFF');
$(this).contents('td').css('border', 'none');
});
});
問題は何ですか?あなたの問題を示すjsfiddleコードは、あなたが答えを速く得るのを助けることができます。 –