DEMO FIDDLE

<script>
$(document).ready(function ()
{
     document.getElementById(introdukt).focus()
    document.getElementById(introdukt).select()
});
</script>
<input type="text" size="12" id="introdukt" value="match" style="text-align:center"  />


不专注于领域?如何纠正呢?

最佳答案

working fiddle

$(document).ready(function ()
{
    $('#introdukt').focus()
    $('#introdukt').select()

    //or if you want to be more efficient and use less characters, chain it
    $('#introdukt').focus().select()

});


您没有正确使用选择器。检查我的小提琴。

同样,我将您提琴中的ID从原来的更改为introdukt。

同样,如果您准备好使用jquery文档,则不妨使用jquery选择器代替纯js方法。

关于jquery - jQuery焦点并选择id输入字段,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/17748220/

10-10 19:22