1

我正在使用一个名为 showDate() 的 JavaScript 函数,它传递了一个参数(称为 id)。我试图让函数显示带有在函数调用中传递给函数的 innerHTML 属性的日期。

这是我的代码:

<!DOCTYPE html>
<html>
<head>
<title>My bored html</title>
<script type = "text/javascript">
function showDate(id)
{
document.getElementById(id).innerHTML = Date();
}
</script>
</head>
<p id = "Datepara" style = "font-family:comic sans ms;color:orange;text-align:center;font-size:25px;">
Date: 24/9/12 <br /><br /><br/>
</p>
<input type = "button" onclick = "showDate(Datepara)" value = "Display today's date" />
</body>
</html>
4

3 回答 3

2

改变

showDate(Datepara)

经过

showDate('Datepara')

否则,您将传递 html 元素而不仅仅是 id。

于 2012-10-01T12:29:03.927 回答
2

您需要在元素的 id 字符串周围加上引号:

<!DOCTYPE html> 
<html> 
<head> 
<title>My bored html</title> 
<script type = "text/javascript"> 
function showDate(id) 
{ 
document.getElementById(id).innerHTML = Date(); 
} 
</script> 
</head> 
<p id = "Datepara" style = "font-family:comic sans ms;color:orange;text-align:center;font-size:25px;"> 
Date: 24/9/12 <br /><br /><br/> 
</p> 
<input type = "button" onclick = "showDate('Datepara')" value = "Display today's date" /> 
</body> 
</html> 
于 2012-10-01T12:29:56.287 回答
1

最好的方法是:

<input type = "button" onclick = "show Date('Datepara')" value = "Display today's date" />

我希望这是有帮助的。

于 2012-10-01T12:40:36.990 回答