答案 0 :(得分:1)
当您的意思是“触发点击”时,您希望链接正常工作吗?你不能。
解决方法是在使用window.location
重定向的链接上注册点击事件。
例如:
// Your code somewhere in the onclick of another element
$('#the-link').click()
// Then, register a click event
$('#the-link').on('click', function() {
window.location.href = this.href
})
编辑:哎呀,看起来像一位评论者在我提交答案时说了这句话。 @David Hedlund:创建你的答案,我会删除我的:)