$("<button>")
.addClass("radio")
.addClass(this._getValue(lbl) ? "checked" : "")
.attr(this._getDisableProp(lbl) ? ("disabled", "disabled") : "")
.prop(this._getDisableProp(lbl) ? ("disabled", true) : ("disabled", false));
在上面的代码中,我试图添加attr
并且prop
仅当我的函数返回 true 时。我做了同样的addClass
事情并且它有效,但它不适用于attr
and prop
。
请问有什么解决方法吗?