这是我现在在我的博客文章中拥有的 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>
我无法在输入文本框中插入空格。
什么原因 ?解决方案是什么?