Posted in Javascript onNovember 05, 2010
有一个文本框,id 为 d,用下面的 js 代码,想让其获得焦点。
document.getElementById("d").focus();
结果代码在 IE 中不起作用,要让 IE 中也获得焦点,得用类似如下的代码:
document.body.onload = function(){ document.getElementById("d").focus(); }
js focus不起作用的解决方法(主要是因为dom元素是否加载完成)
声明:登载此文出于传递更多信息之目的,并不意味着赞同其观点或证实其描述。
Reply on: @reply_date@
@reply_contents@