我有 3 个字段:姓名、姓氏和连接。
我要做的是将字段名称的第一个字符与姓氏连接起来。正如我所写,Concat 领域正在发生变化。
我现在有这个:
<p>Name</p><input type="text" id="name" onChange="document.getElementById('concat').value=this[0].value;" />
<p>Last name</p><input type="text" id="last_name" document.getElementById('txt').value=document.getElementById('txt').value + this.value;"/>
<p>Concat</p>
<input type="text" id="concat" />
但是第一个字符似乎不起作用,我认为问题可能出在 this[0].value; 或者我如何获得第一个聊天者,还有其他功能可以做到吗?
谢谢,提前。