我在通过 Greasemonkey/Tampermonkey 触发 jQuery 点击时遇到问题...
jQuery('button').each(function() {
jQuery(this).css('background', 'red');
jQuery(this).click();
location.assign("javascript:jQuery(this).click();void(0)");
}
如您所见,我什至尝试了location.assign hack,但没有任何效果,控制台中也没有错误。
有趣的是,是的,背景颜色确实变为红色,所以我假设它的.click()
工作方式与其他 jQuery 方法不同。