如何用js为label标签添加for属性

2024-12-16 14:53:57
推荐回答(1个)
回答1:

var obj=document.getElementById("你的label的id");
obj.setAttribute("for","for对应的值");