我需要通过在以下句子中以斜体显示名称来更新代码。
我将在innerHTML 中的什么位置放置 标签?
`enter code here`
<html>
<head>
<title>
Greetings
</title>
<meta charset="us-ascii">
</head>
<body>
<h2>Greetings</h2>
<p>
Enter your name:
<input type="text" id="nameBox" size=12 value="">
</p>
<input type="button" value="Click for Greeting"
onclick="
document.getElementById('outputDiv').innerHTML=
'Hello '
+ document.getElementById('nameBox').value
+ ', welcome to my page.<br>Do you mind if I call you '
+ document.getElementById('nameBox').value
+ '?';
">
<hr>
<div id="outputDiv">
</div>
</body>
</html>