光標處插入內容

function test(str) { var tc = document.getElementById("TextBox1"); var tclen = tc.value.length; tc.focus(); if(typeof document.selection != "undefined") { document.selection.createRange().text = str; } else { tc.value = tc.value.substr(0,tc.selectionStart)+str+tc.value.substring(tc.selectionStart,tclen); } }
發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章