若想在Grid上的toolitem那欄的按鈕,當游標停在那個按鈕上時出現提示?

網頁增加如下程式中script中。

$(document).ready(function () {

$('#toolItemdataGridMaster
查詢').attr('title','我的查詢');

$('#toolItemdataGridMaster
查詢').find('.l-btn-text').mouseover(function()

{

$(this).addClass('overtext');

});

$('#toolItemdataGridMaster
查詢').find('.l-btn-text').mouseout(function()

{ $(this).removeClass('overtext');

});

})

其中:

toolItemdataGridMaster查詢”是我的buttonid,可以瀏覽網頁,檢查元件查找元件的id,並替換到上述程式中。



另外,需要增加一部分內容到style項中:

<style>

.overtext

{

color: #00ff00;

}

</style>

顏色請自行調整。