我試圖顯示禁用按鈕的工具提示。我不確定jQuery事件是否爲禁用的元素激發了,但我試圖檢查是否可以顯示禁用項目的工具提示。我的例子是here禁用按鈕上的Jquery UI工具提示
<p>Your age:
<input id="age" title="We ask for your age only for statistical purposes.">
</p>
<p>
<input type="button" title="This a test enabled button." value="hover me please">
</p>
<p>
<input type="button" disabled="disabled" title="This a test disabled button." value="hover me please"> </p>
$(function() {
$(document).tooltip({
position: {
my: "center bottom-20",
at: "center top",
using: function (position, feedback) {
$(this).css(position);
$("<div>")
.addClass("arrow")
.addClass(feedback.vertical)
.addClass(feedback.horizontal)
.appendTo(this);
}
}
});
});
我們可以覆蓋提示CSS實現的功能?有些東西像.ui-tooltip [disabled =「disabled」]。 – Kurkula 2014-10-01 05:10:43
看看我的編輯:認爲最好的是,如果你嘗試模仿一個按鈕的禁用狀態... – webeno 2014-10-01 05:15:19
@webeno,但你不覺得這是作弊嗎? – 2014-10-01 05:25:29