在HTML文本框中允许空格

时间:2012-10-30 12:10:31

标签: javascript html blogger

这是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>

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

1 个答案:

答案 0 :(得分:1)

您错过了"

中的结束style="WIDTH: 300px;>

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

<input type="text" />