我刚开始使用 Javascript。我已经通过代码在JS中实现了onchange事件:
<html>
<head>
<script>
function fun()
{
var x=document.getElementById("price1");
document.forms['forms1'].price.value=x.value*2;
}
</script>
</head>
<body>
<form name="forms1">
Enter Price: <input type="text" id="price1" onchange="fun()">
value is: <input name="price" type="text" >
</form>
</body>
</html>
但问题是我得到像
值为:| _ _ |
但我希望它像一个没有的段落input tag
(即不在一个盒子里)。我希望它像文本一样被更改。例如value is: 20
不是value is:|___20___|
。有什么帮助吗?