Style.Display =“无”无法在Google Apps脚本HTML服务中使用

时间:2012-11-09 14:43:37

标签: javascript dom google-apps-script

我在我的HTML服务模板中运行了一个相当简单的javascript函数,该函数应该将div的显示设置为“none”。但是,每当我包含以下行时:

document.getElementById("timesheet").style.display = "none";

我的浏览器出错:“无法调用未定义的方法'f___'。”当我把它拿出来时,没有错误。

有人可以告诉我,如果我错过了什么吗?

1 个答案:

答案 0 :(得分:0)

只需使用jQuery。

<script src="http://code.jquery.com/jquery-1.8.2.js"></script>
<script>
$(document).ready(function(){
$("#whateverYouAreClickingIDHere").click(function () {
      $("#timesheet").css('display','none');
    });
});
</script>