我在我的HTML服务模板中运行了一个相当简单的javascript函数,该函数应该将div的显示设置为“none”。但是,每当我包含以下行时:
document.getElementById("timesheet").style.display = "none";
我的浏览器出错:“无法调用未定义的方法'f___'。”当我把它拿出来时,没有错误。
有人可以告诉我,如果我错过了什么吗?
答案 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>