gpt4 book ai didi

javascript - 焦点不适用于文本字段

转载 作者:行者123 更新时间:2023-12-03 04:36:20 25 4
gpt4 key购买 nike

来源 ->

<input name="ctl00$MainContent$MapUserControl$6551_Edit_artintheparkssculpturelocations_32_id" type="text" maxlength="50" id="ctl00_MainContent_MapUserControl_6551_Edit_artintheparkssculpturelocations_32_id" onchange="MaxLength(50, this, 'id')" class="control-label form-control" id2="6551_Edit_artintheparkssculpturelocations_32_id">

我可以通过

更新字段中的文本
x = document.getElementById('ctl00_MainContent_MapUserControl_6551_Edit_artintheparkssculpturelocations_32_id')
x.value ="bla";

但是我无法更新焦点...

x.focus();

按预期返回未定义,但文本字段没有任何反应。我也尝试过自动对焦,并使用 Jquery 而不是 JS 抓取元素......仍然没有快乐......知道为什么吗?

最佳答案

遇到过类似的问题。通过setTimeOut调用焦点就是你所需要的。

setTimeout(function() { x.focus()}, 1);

关于javascript - 焦点不适用于文本字段,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43277463/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com