ブラウザのすべてのバージョンで IE に問題があります (問題はありません)。他のすべてのブラウザで問題なく動作します。
<a href="<?php echo base_url() ?>pages/delete_page/<?php echo $row->id; ?>" class="delete" data-uid="<?php echo $row->id; ?>">
<i class="icon-cancel"></i><span class="delete_tooltip">delete page</span>
</a>
これが私の<a>
タグで、とてもシンプルです。
基本的に IE は href に従っており、JS をまったく実行していません。href からリンクを削除すると、ホームページに送り返されます。
プラグインを使用してモーダル ボックスをロードしていますが、前述のように、すべてのブラウザですべて正常に動作します。
$('.delete').click(function(e) {
console.log($('#modal-'+$(this).data('uid'))); // Button which will activate our modal
$('#modal-'+$(this).data('uid')).reveal({ // The item which will be opened with reveal
animation: 'fadeAndPop', // fade, fadeAndPop, none
animationspeed: 400, // how fast animtions are
closeonbackgroundclick: false, // if you click background will modal close?
dismissmodalclass: 'modal_cancel' // the class of a button or element that will close an open modal
});
return false;
});
そして、それがプラグインをそのリンクに呼び出す JS です。
どんな助けでも大歓迎です。