網頁增加如下程式中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查詢”是我的button的id,可以瀏覽網頁,檢查元件查找元件的id,並替換到上述程式中。
另外,需要增加一部分內容到style項中:
<style>
.overtext
{
color: #00ff00;
}
</style>
顏色請自行調整。