-1
我試圖使用Google Closure禁用input
字段。任何人都可以告訴我使用Google Closure執行該操作的語法是什麼?如何使用Google Closure將禁用的屬性添加到元素?
我試圖使用Google Closure禁用input
字段。任何人都可以告訴我使用Google Closure執行該操作的語法是什麼?如何使用Google Closure將禁用的屬性添加到元素?
谷歌關閉的任何元素都可以使用setAttribute()函數禁用。
/**
* @type {Element}
* @private
*/
this.$title_ = null; // call getElementByClass('','') here;
this.$title_.setAttribute('disabled', 'disabled');
這裏。$ title是一個輸入元素。