作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
当模态出现时,我想关注 token 字段输入字段。目前它只有在我点击模态中的输入字段时才会聚焦。
https://jsfiddle.net/csisanyi/h19Lzkyr/12/
我尝试添加以下代码
Mousetrap.bind('w', function() {
document.getElementById("keywordButton").click();
document.getElementById("keyword-input").focus();
});
我还尝试添加 <input autofocus>
但是当 token 字段被初始化时,它似乎被覆盖了。
我检查了 bootstrap-tokenfield documentation但是那里并没有真正提到输入字段焦点。
有什么建议吗?
最佳答案
你想让焦点在按钮上还是输入框上?您指定的 ID 用于聚焦按钮。你提到希望该领域集中注意力,但你似乎并没有呼吁它。我无法发表评论,但会随着时间的推移对其进行编辑。HTML:
<div class="modal-body">
<p class="modal_text">Add keywords.</p>
<input class="token-input input-group-lg keywordmodalclass" id="keyword-input" type="text" name="keywords" value="" placeholder="Keywords">
</div>
<div class="modal-footer">
<button id="saveKeyword" type="submit" class="btn btn-success" onclick="submitKeywords()">Save Keywords</button>
J查询:
Mousetrap.bind('w', function() {
document.getElementById("keywordButton").click();
document.getElementById("keyword-input").focus();
});
关于javascript - 专注于 bootstrap-tokenfield 输入,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/52608992/
我有一个 Collection View 并以这样一种方式排列它,即在屏幕的一侧有一个单独的列,并且根据焦点中的集合项替换内容。 如果对某个项目的关注超过 0.5 秒,我希望能够换出内容。 这是我目前
这是一种经常出现的情况,对我来说永远不会太容易。我想我会问其他人如何处理它。 想象一下,如果 demo=60 命令行参数的处理是这样完成的: if DemoOptionSpecified() {
我是一名优秀的程序员,十分优秀!