Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
当我在 asp.net 中找到 value=0 并希望显示值为 0 的标签时,我想禁用链接按钮。
您可以在 javascript pageLoad 添加一些 JS 代码,使用 CssClass 循环所有链接按钮(如果不存在,则添加虚拟 css 类)。
function pageLoad() { $('.lbClassName').each(function (item) { if ($(item).val() == '0') { $(item).prop('disabled', true); } }) }