1

这是我现在在我的博客文章中拥有的 Javascript 和 HTML 代码。

<div dir="ltr" style="text-align: left;" trbidi="on">
<br />
<script language="javascript" type="text/javascript">
function convertinput() {
    document.getElementById('output').value = "@@[0:[0:1: " + document.getElementById('first').value + "]]";
   document.getElementById('output').style.display = 'block';
}
</script>


<input id="first" maxLength=75 style="WIDTH: 300px;></input>
<br>
<input id="output" style="display:none;"></input>
<br>
<input type='button' onclick='convertinput()' value='convert'>
</div>

我无法在输入文本框中插入空格。
什么原因 ?解决方案是什么?

4

1 回答 1

1

你错过了一个"关闭style="WIDTH: 300px;>

另一件事是</input>不是关闭标签。它必须以这种方式关闭:

<input type="text" />
于 2012-10-30T12:15:33.933 回答