当我单击嵌入式 Google 日历 ( iframe
) 中的事件时,我正在尝试做自己的事情。到目前为止我的代码:
<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吗?