I,M在我的Rails應用程序中使用的工具提示,但它不是在輸入外地工作作爲我的代碼是:引導工具提示不輸入外地工作
%input#main-search{:name => "query", :placeholder => "search all
items", :rel => "tooltip", :title => "Search All Items", :type => "text"}
:javascript
$(document).ready(function(){
$('input[title]').tooltip({placement:'bottom'});
});
我還使用:
$('#main-search').tooltip({'trigger':'focus'});
其不適用於輸入字段,但對於標籤,它工作正常。我如何才能輸入字段的工具提示?
生成的標記是什麼樣的? – epascarello