标签:remove 禁用 doc query jquery ntb attribute pre 超链接
// 禁用超链接元素elem ;
document.getElementById(elemID).setAttribute(‘disabled‘, ‘disabled‘);
// 启用超链接元素elem
document.getElementById(elemID).removeAttribute(‘disabled‘);
// 禁用超链接元素elem
$(elem).attr(‘disabled‘, ‘disabled‘);
// 启用超链接元素elem
$(elem).removeAttr(‘disabled‘);
标签:remove 禁用 doc query jquery ntb attribute pre 超链接
原文地址:https://www.cnblogs.com/zero-zm/p/10014655.html