我收到此错误:
未捕获的语法错误:意外的令牌(
当我不注释掉这个函数时:
function setTextField(str)
{
if ( (str == "") || (str == null) )
str = "Enter Task Here";
document.getElementById.("get_subject").value = str;
}
我正在尝试从其他地方执行此操作(稍后在代码中):
setTimeout('setTextField();', 1000);
为什么我会收到此错误?