将自动对焦设置为 html 中的输入?
Set autofocus to an input in html?
我有一些 html 代码,我听说自动对焦会加快搜索结果等。我如何使用现有代码来做到这一点?
我一直在寻找其他线程等如何做到这一点,我试图理解但我不能,如果有人能帮助我,我会很棒。
<input type="text" class="form-control" id="query" name="query" value="<?php if($this->input->post('query')) { echo $this->input->post('query'); } ?>" placeholder="Search here">
将 autofocus
添加到您的输入属性。
<input type="text" class="form-control" id="query" name="query" value="<?php if($this->input->post('query')) { echo $this->input->post('query'); } ?>" placeholder="Search here" autofocus>
我有一些 html 代码,我听说自动对焦会加快搜索结果等。我如何使用现有代码来做到这一点?
我一直在寻找其他线程等如何做到这一点,我试图理解但我不能,如果有人能帮助我,我会很棒。
<input type="text" class="form-control" id="query" name="query" value="<?php if($this->input->post('query')) { echo $this->input->post('query'); } ?>" placeholder="Search here">
将 autofocus
添加到您的输入属性。
<input type="text" class="form-control" id="query" name="query" value="<?php if($this->input->post('query')) { echo $this->input->post('query'); } ?>" placeholder="Search here" autofocus>