我有一個<p>
元素,該元素應該包含任何在<input>
框中寫入的內容。 <p>
包含<input>
除最後一個字符外的所有內容。html元素不會根據輸入值更新
例如,(不是有效的JS代碼)
if input = Fish
then p = Fis
if input = Monster
then p = Monste
這裏是我的代碼
<head>
<script>
window.onload = function()
{
document.querySelector('input').addEventListener('keydown', function()
{
document.querySelector('p').innerHTML = document.querySelector('input').value
});
}
</script>
</head>
<body>
<p></p>
<input type="text" />
</body>
如何讓p
元素包含即使在input
的最後一個字符?
更好事件'input'。 – trincot
「更好」是主觀術語,但是是的,這也是一種選擇。 – Paul