JS
// 禁用超链接元素elem ;
document.getElementById(elemID).setAttribute(‘disabled‘, ‘disabled‘);
// 启用超链接元素elem
document.getElementById(elemID).removeAttribute(‘disabled‘);
JQuery
// 禁用超链接元素elem
$(elem).attr(‘disabled‘, ‘disabled‘);
// 启用超链接元素elem
$(elem).removeAttr(‘disabled‘);
原文地址:https://www.cnblogs.com/zero-zm/p/10014655.html
时间: 2024-11-05 16:11:00