我正在开发一个 chrome 扩展,它拦截网页的表单提交事件并检查标题。我正在使用 jquery 表单拦截。它适用于大多数网站,但我发现它不适用于 Twitter。有没有人有同样的经历?我不确定是否是 API 的任何更改或我的代码中的一些错误。附上我的表单拦截代码。
$("form").submit(function(e) {
var $this = $(this);
e.preventDefault();
process(function() {
$this.unbind('submit');
$this.submit();
});
});
process = function(callback) {
alert("inside process");
alert("location.href");
};
谢谢,尚卡尔