Disable Text Input Google App Script
This question already has an answer here:
There is no "enabled" attribute. There is only a disabled
attribute:
$("input").attr('disabled','disabled');
OR:
$('#company-name').attr('disabled', true);
链接地址: http://www.djcxy.com/p/23014.html
上一篇: 如何禁用UI列表项目
下一篇: 禁用文本输入Google App脚本