我想顯示輸入名稱當圖像被徘徊,怎麼可能與下面的示例代碼:顯示輸入名稱的onmouseover
HTML
<img src="imagesample.jpg" height="150px" width="150px" />
<form>
first name: <input type="text" name="fn">
<button onclick="return show(this.form)">send</button>
</form>
<table border="1px" style="width: 350px; height: 250px;">
<tr>
<td>
<p id="displayhere"></p>
</td>
</tr>
</table>
的JavaScript
function show(myform) {
var string = "";
string += myform.fn.value;
document.getelementbyid("displayhere").innerhtml = string
return false;
}
當鼠標懸停圖像時,我應該如何處理名字輸入以顯示?
的document.getElementById( 「displayhere」)的innerHTML =串。分號丟失... – Ashish
@Ashish你不能通過僅添加分號來修復該特定行; )。 – Teemu
我只是第一眼看到它 – Ashish