前台事件。可以給按鈕或者其他控件,讓他們的不可用狀態下的顏色變灰,可用狀態下為#A5A7A9這個顏色
$(".aspNetDisabled").attr("disabled", true);
$(".aspNetDisabled").each(function (index, item) {
$(this).css("text-decoration", "none");
$(this).css("color", "#A5A7A9");
});
前台事件。可以給按鈕或者其他控件,讓他們的不可用狀態下的顏色變灰,可用狀態下為#A5A7A9這個顏色
$(".aspNetDisabled").attr("disabled", true);
$(".aspNetDisabled").each(function (index, item) {
$(this).css("text-decoration", "none");
$(this).css("color", "#A5A7A9");
});
本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。