これが私のコードです(html)
<div id="navig" style="font-family: arial; font-size: 12px; font-weight: normal;">
<div id="navfirst"><a href="#" style="text-decoration: none;">First</a></div>
<div id="navnum"><a href="#" style="text-decoration: none;">1</a></div>
<div id="navnum"><a href="#" style="text-decoration: none;">2</a></div>
<div id="navnum"><a href="#" style="text-decoration: none;">3</a></div>
<div id="navnum"><a href="#" style="text-decoration: none;">4</a></div>
<div id="navnum"><a href="#" style="text-decoration: none;">5</a></div>
<div id="navlast"><a href="#" style="text-decoration: none;">Last</a></div>
$( document ).ready(function( ) {
$('div #navnum').click( function ( ) {
var divtext = $(this).text( ) ;
$( this ).css('background-color', '#f99');
$( this ).prevAll( ).css('background-color', '');
$( this ).nextAll( ).css('background-color', '');
$('#pgnum').html( '<p>clicked page number ' + divtext + '</p>' ).fadeIn( 100 );
});
});
FirefoxとChromeでは正常に動作しますが、IE8では動作しません。IEで動作させる方法