直接上程式碼吧,用js控制在遊標位置插入。 在實現表情的插入時用到了。 複製程式碼 程式碼如下: <BR>function test(str){ <BR>var tc = document.getElementById("mytextarea"); <BR> var tclen = tc.value.length; <BR>tc.focus(); <BR>if(typeof document.selection != "undefined") <BR>{ <BR>document.selection.createRange().text = str; <BR>} <BR>else <BR>{ <BR>tc.value = tc.value.substr(0,tc.selectionStart) str tc.value.substring(tc.selectionStart,tclen); <BR> } <BR>} <BR> 目的透過點擊頁面上的按鈕button 在textarea中的遊標停留處插上文字