2011-07-12 8 views

答えて

0

htmlを変更しないで、data-href属性のliにjQueryクリックイベントを追加します。私はいつも、このような問題のためにこれを行う方が安全だと感じました。

$('#rm_container li').click(function(){ 
    window.location.href = $(this).attr('data-href'); 
}); 

<li data-rotation="-5" data-images="rm_container_2" data-href='http://stackoverflow.com' data-transform="rotate(-5deg)" style="-moz-transform: rotate(-5deg);">
関連する問題