1
當我點擊嵌入式Google日曆中的事件時(iframe
),我正嘗試自己做點事情。 我迄今爲止代碼:用jquery攔截Google日曆上的點擊事件
<script type="text/javascript">
$(document).on('click', function (e) {
if ($(this).hasClass('te-s')) {
e.preventDefault();
e.stopImmediatePropagation();
}
});
$(function() {
$('.te-s').bind("click", function() {
alert("test");
});
</script>
te-s
是包含事件文本的,而不是顯示這種額外的細節泡沫,我(後來)希望我自己的網站重定向類(警告僅僅出於測試目的)。
這可能使用jQuery嗎?