将焦点设置为textbox jQuery

时间:2018-01-30 11:17:35

标签: jquery html

我在点击按钮时尝试将焦点设置为文本框,因此html为:

<input id="commentName" name="commentName" type="text" class="form-control" />

我所尝试的是:

    $('#commentName').focus();
    $('#commentName:text:visible:first').focus();
    $('input[name=commentName]').focus();

但这些都没有将光标放在框中。有人可以帮忙吗?

jQuery版本是3.2.1

谢谢, ç

0 个答案:

没有答案