炎炎設計
2022-01-13 09:54:52
我在提交表單后重定向。但是表單在 iframe 中,所以我無法跟蹤它的提交。提交表單后是否可以跟蹤我的重定向?我也在控制臺中看到消息導航到https://events.genndi.com/thankyou/1d89404d09?req=8r122534042ok
2 回答

子衿沉夜
TA貢獻1828條經(jīng)驗 獲得超3個贊
我認為你可以使用hashchange
window.addEventListener("hashchange", funcRef, false);
您可以在此處閱讀更多信息:https ://developer.mozilla.org/en-US/docs/Web/API/WindowEventHandlers/onhashchange
jQuery 的小例子:
$(window).on('hashchange', function() {
// type your code here
});

絕地無雙
TA貢獻1946條經(jīng)驗 獲得超4個贊
$('a').live('click', function () {
$.post('/registerclick/', { data: $(this).attr('src') }, function () {});
});
$('a').live('click', function () { $.post('/registerclick/', { data: $(this).attr('src') }, function () {}); });
添加回答
舉報
0/150
提交
取消