我正在使用一个名为 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>