如何使用 Google 闭包向元素添加禁用属性?

How to add disabled attribute to an element using Google Closure?

我正在尝试使用 Google 闭包禁用 input 字段。谁能告诉我使用 Google 闭包执行该操作的语法是什么?

google 闭包上的任何元素都可以使用 setAttribute() 函数禁用。

/**
* @type {Element}
* @private
*/
this.$title_ = null; // call getElementByClass('','') here;
this.$title_.setAttribute('disabled', 'disabled');

这里this.$title是一个输入元素。