这是我的代码(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 上工作正常,但在 IE 8 中不行,如何让它在 IE 中工作