我想通過點擊錨標籤運行使用jQuery 1.7的單擊事件處理程序。 This代碼在Firefox中正常工作,但我不能在IE 10中使用相同的代碼顯示警告框。任何人都可以請告訴我如何在Internet Explorer 10中實現此功能?如何使用jQuery在Internet Explorer 10中運行單擊事件處理程序?
$(document).ready(function() {
$('.call-link').on('click', function (ev, evData) {
alert("hello world");
});
});
您是否在ie10控制檯中看到任何錯誤? – Ravimallya
它不在IE中調用,因爲元素被禁用。 –
可能重複[jQuery檢測點擊禁用提交按鈕](http://stackoverflow.com/questions/7833854/jquery-detect-click-on-disabled-submit-button) –