最新国产好看的视频,伊人天堂AV在线,国产Aaaaaa视频,蜜臀视频在线观看一区,人妻av色图,密臀久久久精品影片,青青视频免费观看毛片,久草在线观看视,国产三级精品色情在线

ie focus bug 解決方法

 更新時(shí)間:2009年09月03日 17:27:05   作者:  
在IE中,新創(chuàng)建的input沒有如預(yù)期的獲得焦點(diǎn)。
如果把input.focus()放在一個(gè)setTimeout中延時(shí)執(zhí)行,則就可以獲得焦點(diǎn)。
復(fù)制代碼 代碼如下:

<script type="text/javascript" >
(function(){
function get(id){
return document.getElementById(id);
}
window.onload = function(){
get('makeinput').onmousedown = function(){
var input = document.createElement('input');
input.setAttribute('type', 'text');
input.setAttribute('value', 'test1');
get('inpwrapper').appendChild(input);
input.focus();
input.select();
}
get('makeinput2').onmousedown = function(){
var input = document.createElement('input');
input.setAttribute('type', 'text');
input.setAttribute('value', 'test1');
get('inpwrapper2').appendChild(input);
setTimeout(function(){
input.focus();
input.select();
}, 0);
}
get('input').onkeypress = function(){
get('preview').innerHTML = this.value;
}
}
})();
</script>
<h1><code>setTimeout</code></h1>
<h2>1、未使用 <code>setTimeout</code></h2>
<button id="makeinput">生成 input</button>
<p id="inpwrapper"></p>
<h2>2、使用 <code>setTimeout</code></h2>
<button id="makeinput2">生成 input</button></h2>
<p id="inpwrapper2"></p>
<h2>3、另一個(gè)例子</h2>
<p><input type="text" id="input" value=""/><span id="preview"></span></p>

相關(guān)文章

最新評論

抚州市| 澄江县| 邵阳县| 准格尔旗| 连云港市| 文水县| 杭锦后旗| 钦州市| 郸城县| 襄樊市| 临安市| 邵阳县| 瑞丽市| 河西区| 卢氏县| 天水市| 改则县| 逊克县| 宁南县| 兴海县| 沁源县| 扎兰屯市| 方正县| 五指山市| 镇雄县| 鄯善县| 永胜县| 浦北县| 当涂县| 京山县| 大同市| 故城县| 博湖县| 太保市| 台江县| 彰化县| 峨眉山市| 连平县| 育儿| 乌审旗| 崇阳县|