我在我的 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'});
它不适用于输入字段,但对于标签它可以正常工作。如何为输入字段禁用工具提示?