我想使用函数编写以下代码:
<!DOCTYPE html>
<html>
<head>
<title> Test Java Script</title>
</head>
<body>
<button onclick=this.innerHTML=Date();> The Time Is: ? </button>
</body>
</html>
所以我创建了一个函数并将“this”作为参数传递,但它不起作用:
<!DOCTYPE html>
<html>
<head>
<title> Test Java Script</title>
</head>
<body>
<button onclick=setTime(this)> The Time Is: ? </button>
</body>
<script type="text/javascript">
function setTime(Object b) {
b.innerHTML=Date();
}
</script>
</html>
我做错了什么?
答案 0 :(得分:2)
只需从您的函数参数中删除Object
类型,然后您就可以了:
function setTime(b) {
b.innerHTML=Date();
}
在评论中提到的Katana314,JavaScript并没有使用显式类型。
这是一个小提琴:http://jsfiddle.net/3cyj5916/
答案 1 :(得分:2)
试试这个:
<!DOCTYPE html>
<html>
<head>
<title> Test Java Script</title>
<script type="text/javascript">
function setTime(b) {
b.innerHTML=Date();
}
</script>
</head>
<body>
<button onclick="setTime(this);"> The Time Is: ? </button>
</body>
</html>
在onclick上添加引号。 从函数声明中删除“对象”。 单击按钮。