Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
以下代码:
onLoad="$('#link_id').trigger('click');"
在 FF 中工作,但在 IE 中不触发。有没有一种在 IE 和 FF 中都适用的方法?
您是否将其内嵌到 HTML 中,作为某处标记中的事件处理程序?
不要那样做。
在包含 jQuery 库之后,将其放入外部 .js 文件或脚本块中的某个位置,如下所示:
$(function() { $('#link_id').trigger('click'); });
使用 JQuery 你必须像 Fausto 所说的那样做。
但你可以尝试:document.getElementById('link_id').click()
document.getElementById('link_id').click()