前台事件。可以给按钮或者其他控件,让他们的不可用状态下的颜色变灰,可用状态下为#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删除。