ここにあるdiv
:
<DIV CLASS= "KJX" >
// DIV CONTENT
</DIV>
divをクリックした後、divスタイルを次のように変更したい:
<style>
background-color: red;
font-type: oswald;
</style>
クリック中だけでなく、クリック後も変更を div に保持したい。そのためのスクリプトはありますか?
ここにあるdiv
:
<DIV CLASS= "KJX" >
// DIV CONTENT
</DIV>
divをクリックした後、divスタイルを次のように変更したい:
<style>
background-color: red;
font-type: oswald;
</style>
クリック中だけでなく、クリック後も変更を div に保持したい。そのためのスクリプトはありますか?
これは次のようにすべきだと思います:
$(function() {
$('.home').click(function() {
$(this).css({'background-color', 'red'});
});
}):
$(function() {
$('.KJX').click(function() {
$(this).css({ 'background-color ': 'red'
'font-type' :' oswald'});
});
});
これがうまくいくことを願っています
jQuery ソリューションでは次のようになります。
$('.kjx').click(function(){
$(this).css({'background-color' : 'red', 'font-type' : 'oswald'});
});