使用JS在textarea在光标处插入内容(3)
来源:未知 责任编辑:责任编辑 发表时间:2014-05-10 12:24 点击:次
64
var str = "[#$%$#]";
65
if (document.selection) {
66
obj.focus();
67
var sel = document.selection.createRange();
68
sel.text = str;
69
} else if (typeof obj.selectionStart === 'number' && typeof obj.selectionEnd === 'number') {
70
var startPos = obj.selectionStart;
71
var endPos = obj.selectionEnd;
72
var tmpStr = obj.value;
73
obj.value = tmpStr.substring(0, startPos) + str + tmpStr.substring(endPos, tmpStr.length);
74
} else {
75
obj.value += str;
76
77
});
78
});
摘自 JSON
相关新闻>>
最新推荐更多>>>
- 发表评论
-
- 最新评论 更多>>