我的网站中有一个文本框似乎无法获得焦点。我尝试使用jQuery添加焦点点击但似乎没有效果。任何人都可以帮助我吗?
应用链接:http://test-app-andrew.herokuapp.com/
玉:
div(id="templates",class="sideBarContent")
div(id="addPageBox")
input(type="text",id="addPage")
HTML(从上面输出):
<div id="templates" class="sideBarContent">
<div id="addPageBox">
<input type="text" id="addPage">
</div>
</div>
Coffeescript:
$ ->
$('input#addPage').click ->
$('input#addPage').focus()
Javascript(从上面输出):
// Generated by CoffeeScript 1.8.0
(function() {
$(function() {
return $('input#addPage').click(function() {
return $('input#addPage').focus();
});
});
}).call(this);
任何帮助都会很棒,谢谢!