JS document.selection.createRange方法
当前位置:点晴教程→知识管理交流
→『 技术文档交流 』
document.selection.createrange() 根据当前文字选择返回 textrange 对象,或根据控件选择返回 controlrange 对象。 配合 execcommand,在 html 编辑器中很有用,比如:文字加粗、斜体、复制、粘贴、创建超链接等。 实例一: 哈哈。我们都是新生来得。大家都来相互帮助呀。这样我们才能进步,我们才能赚大钱! 实例二: 实例三:选中input中的文本 对textarea中的内容,进行选中后,加效果 实例四:javascript捕获到选中的网页中的纯文本内容 function getsel() { var t=window.getselection?window.getselection():(document.getselection?document.getselection():(document.selection?document.selection.createrange().text:"")) document.forms[0].selectedtext.value = t; } 以上的代码可以捕获到选中的网页中的纯文本内容(不含html标签) 如果想获得包含html的内容,将document.selection.createrange().text改成document.selection.createrange().htmltext 该文章在 2011/3/30 17:17:31 编辑过 |
关键字查询
相关文章
正在查询... |