头闻号

安徽合盛塑胶科技有限公司

发泡设备|塑料模|模具设备|PP|LDPE|注塑加工

首页 > 新闻中心 > 科技常识:在textarea和input光标处插入内容,支持ie
科技常识:在textarea和input光标处插入内容,支持ie
发布时间:2024-12-25 10:27:00        浏览次数:7        返回列表

今天小编跟大家讲解下有关在textarea和input光标处插入内容,支持ie ,相信小伙伴们对这个话题应该有所关注吧,小编也收集到了有关在textarea和input光标处插入内容,支持ie 的相关资料,希望小伙伴们看了有所帮助。

项目需求,用户要能够输入和点击外面的公式去插入到textaera中,试了好几种方法,有的是在谷歌下好使,在ie下不好使,最后找到了下面这个方法,目前在ie8以上都可以生效。直接上代码

function insertAtCursor(myField, myValue) { //IE support if (document.selection) { myField.focus(); sel = document.selection.createRange(); sel.text = myValue; } //MOZILLA and others else if (myField.selectionStart || myField.selectionStart == '0') { var startPos = myField.selectionStart; var endPos = myField.selectionEnd; myField.value = myField.value.substring(0, startPos) + myValue + myField.value.substring(endPos, myField.value.length); myField.selectionStart = startPos + myValue.length; myField.selectionEnd = startPos + myValue.length; } else { myField.value += myValue; } }

调用也相当的简单

insertAtCursor(‘DOM节点’,‘内容’);

来源:爱蒂网