E-COM-NET
首页
在线工具
Layui镜像站
SUI文档
联系我们
推荐频道
Java
PHP
C++
C
C#
Python
Ruby
go语言
Scala
Servlet
Vue
MySQL
NoSQL
Redis
CSS
Oracle
SQL Server
DB2
HBase
Http
HTML5
Spring
Ajax
Jquery
JavaScript
Json
XML
NodeJs
mybatis
Hibernate
算法
设计模式
shell
数据结构
大数据
JS
消息中间件
正则表达式
Tomcat
SQL
Nginx
Shiro
Maven
Linux
createRange
摘抄自网络 document.selection
document.selection.
createRange
() 根据当前文字选择返回 TextRange 对象,或根据控件选择返回 ControlRange 对象。
soft_xiaohui
·
2013-07-12 13:00
document
js 屏蔽form的onkeydown onkeyup onkeypress 的13按键
首页functioninsertData(obj,str){if(document.selection){varsel=document.selection.
createRange
();sel.text
mojianpo
·
2013-07-11 10:00
JS在TextArea光标位置插入文字并实现移动光标到文字末尾
selectionEnd属性复制代码代码如下:functioninsertText(obj,str){if(document.selection){varsel=document.selection.
createRange
·
2013-06-21 16:12
JS在TextArea光标位置插入文字+移动光标到文字末尾
function insertText(obj,str) { if (document.selection) { var sel = document.selection.
createRange
v5browser
·
2013-06-21 13:00
textarea
限制textarea最大录入长度
varvalue=$(txt).val(); if(maxLength&&value.length>maxLength-1){ //选中区域值 varoTR=txt.document.selection.
createRange
sunlovefly2008
·
2013-05-29 19:00
js 软键盘
ctrl=ObjectId;varCaretPos=0;//IESupportif(document.selection){ctrl.focus();varSel=document.selection.
createRange
rain_2372
·
2013-05-22 09:00
软键盘
新浪微博中@功能的实现
直接调用document.selection.
createRange
()即可if (document.selection) { elem.focus(); var Sel = document.selection.createRang
B10090120
·
2013-05-19 12:00
js正则表达式控制文本框输入浮点数
方法regInput和 oncheckLength//验证输入是否合法functionregInput(obj,reg,inputStr){ vardocSel=document.selection.
createRange
zpp0422
·
2013-05-16 10:43
JS正则表达式
js控制输入浮点数
验证浮点数
文本框输入浮点数
js正则表达式控制文本框输入浮点数
js方法regInput和oncheckLength//验证输入是否合法functionregInput(obj,reg,inputStr){vardocSel=document.selection.
createRange
zpp0422
·
2013-05-16 10:43
js正则表达式
js控制输入浮点数
文本框输入浮点数
js
JS在TextArea光标位置插入文字+移动光标到文字末尾
function insertText(obj,str) { if (document.selection) { var sel = document.selection.
createRange
gleams
·
2013-05-09 16:00
textarea
JS在TextArea光标位置插入文字+移动光标到文字末尾
function insertText(obj,str) { if (document.selection) { var sel = document.selection.
createRange
gleams
·
2013-05-09 16:00
textarea
[置顶] javascript控制光标移动
"functiongo(n){demo.focus();with(document.selection.
createRange
()){moveStart("character",n);collapse(
873582595
·
2013-04-25 09:00
JS金额大小写转换
gt; function regInput(reg) { var srcElem = event.srcElement var oSel = document.selection.
createRange
robinrain
·
2013-04-25 09:00
大小写
js 火狐下取本地路径实现思路
if(obj){//ieif(window.navigator.userAgent.indexOf("MSIE")>=1){obj.select();returndocument.selection.
createRange
·
2013-04-02 16:29
js获取和设置文本框光标的位置
CaretPos = 0; // IE Support if (document.selection) { ctrl.focus(); var Sel = document.selection.
createRange
mybwu_com
·
2013-03-21 14:00
文本框
js获取和设置文本框光标的位置
ctrl){//获取光标位置函数varCaretPos=0;//IESupportif(document.selection){ctrl.focus();varSel=document.selection.
createRange
testcs_dn
·
2013-03-21 14:00
js
使用 js 获得上传文件的真实路径 chrome 浏览器 除外
if(obj){ if(window.navigator.userAgent.indexOf("MSIE")>=1){ obj.select(); returndocument.selection.
createRange
刘立喜
·
2013-02-27 08:48
js
绝对路径
fakepath
IE9 不能显示本地图片问题
varstrPic=fileImg.value;if($.ie&&$.browser.version>6){fileImg.select();strPic=document.selection.
createRange
zhengbo0
·
2013-01-22 14:00
JS根据当前文字选择返回被选中的文字
<script> function doit(){ newT=document.selection.
createRange
() clipboardData.setData("
tanglong8848
·
2013-01-10 15:00
js
JS根据当前文字选择返回被选中的文字
functiondoit(){ newT=document.selection.
createRange
() clipboardData.setData("Text",newT.text) if
thl331860203
·
2013-01-10 15:00
javascript 获取选择文本的光标起始地址和结束地址(仅针对
标签定义的单行文本)
functionGetCursorStartPosition(obj){varstart=0;if(document.selection)//forIE{obj.focus();varsel=document.selection.
createRange
tanghuimin
·
2012-12-05 16:19
javascript
文本
光标地址
web开发
javascript 获取选择文本的光标起始地址和结束地址(仅针对
标签定义的单行文本)
varstart=0; if(document.selection)//forIE { obj.focus(); varsel=document.selection.
createRange
tanghuimin
·
2012-12-05 16:19
JavaScript
文本
光标地址
input选择图片后立刻能阅览图片代码
) { //ie if(window.navigator.userAgent.indexOf("MSIE")>=1) { obj.select(); returndocument.selection.
createRange
jackwumengfeng
·
2012-11-29 15:00
.net中js方法,设置在文本框中光标位置处插入数据
txtFormContent');//获取文本框 if(document.selection){ //为空时赋值 obj.focus(); varsel=document.selection.
createRange
fengxing2009
·
2012-11-27 09:00
IE9 js图片预览 可设定显示出来的图片大小
//IE当中图片预览 functiondox(obj){ obj.select(); obj.blur(); varnfile=document.selection.
createRange
().text
funi16
·
2012-11-25 16:00
js实现在文本框光标处添加字符的方法介绍
复制代码代码如下:functionButton4_onclick(obj){obj.focus();varrng=document.selection.
createRange
();rng.setEndPoint
·
2012-11-24 15:17
javascript 鼠标选中部分值的获取 (没有文本框)
) javascript鼠标选中部分值 functiongetSelectText(){ //适用于IE if(document.selection&&document.selection.
createRange
pureboys
·
2012-09-25 14:00
获取Textarea 元素当前的光标位置及document.selection.
createRange
()资料
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml&q
txf2004
·
2012-08-31 15:00
document
pasteHTML兼容ie,firefox,chrome
functiontest(){ if(document.selection&&document.selection.
createRange
){ varmyRange=document.selection.
createRange
yiluoAK_47
·
2012-08-27 15:00
iframe
IE
chrome
firefox
button
JavaScript在ASP页面中实现掩码文本框效果代码
首先实现两个函数用来操作光标:复制代码代码如下://得到一个文本框控件的当前光标位置functiongetPos(obj){obj.focus();varworkRange=document.selection.
createRange
·
2012-08-22 17:18
IE9获取file控件的文件路径
varstrPic=fileImg.value;if($.ie&&$.browser.version>6){ fileImg.select(); strPic=document.selection.
createRange
yiluoAK_47
·
2012-08-15 15:00
框架
IE
测试
File
div
button
JS控制文本框只能输入整数或带一位小数的浮点数
\d{0,1}$/; vardocSel=document.selection.
createRange
() if(docSel.parentElement().tagName!
xusongsong520
·
2012-08-13 20:00
JavaScript
html
server
function
测试
input
document.selection 的作用:获取选中然后进行相关操作
方法有: clear清除选中的内容 empty取消选中
createRange
返回TextRange或ControlRange对象 createRangeCollection不支持
cui_angel
·
2012-08-07 09:00
JavaScript
html
function
input
character
button
获取鼠标选中文字
本文关键点: document.selection.
createRange
().text //ie document.getSelection();//ff selection 
gleams
·
2012-08-03 11:00
中文
获取鼠标选中文字
本文关键点: document.selection.
createRange
().text //ie document.getSelection();//ff selection 
gleams
·
2012-08-03 11:00
中文
insertHTML
insertHTML = function(node , html ,where) { if(node.ownerDocument.
createRange
shuaigg.babysky
·
2012-07-18 22:00
insert
如何获取页面上鼠标选中的文字
原文链接:http://www.cnblogs.com/NetSos/archive/2011/02/14/1954345.html本文关键点:document.selection.
createRange
cubuntu
·
2012-05-24 21:00
新浪微博
function
脚本
测试
文档
document.selection 和getSelection 的demo
document.selection){varselObj=document.selection.
createRange
();text=selObj.text;}else{varselObj=window.getSelection
所得税
·
2012-05-21 20:00
获取可编辑div光标位置
即点击一下就可以编辑元素然后鼠标移到别处就算编辑完成必须用div编辑而不是表单Div光标位置插入文字或HTMLvarpos; functiongetPos() { pos=document.selection.
createRange
yiluoAK_47
·
2012-05-07 16:00
JavaScript
function
null
input
div
button
html 文本框屏蔽非法字符,解决js的replace函数使光标跳到文本最后的问题
quot;> function getCursorPos(obj) { obj.focus(); var currentRange=document.selection.
createRange
zjutsoft
·
2012-05-07 11:00
replace
获取IE,FireFox和Chrome的File全路径
window.navigator.userAgent.indexOf("MSIE") >= 1) {//IE 4 obj.select(); 5 path = document.selection.
createRange
老钟
·
2012-04-14 16:00
JS为选中内容添加颜色,字体,大小等等
主要为代码为: document.selection.
createRange
().execCommand('Bold'); 这段代码就是为选所内容设置粗体 document.selection.createR
xitong
·
2012-04-12 21:00
js
javascript限制输入decimal
javascript限制输入decimal functionregInput(obj,reg,inputStr) { vardocSel=document.selection.
createRange
sjzs5590
·
2012-03-20 18:00
JavaScript
html
XHTML
function
input
JS输入限制
JS输入限制,不符要求不能输入的代码 functionregInput(obj,reg,inputStr) { vardocSel=document.selection.
createRange
() if
sjzs5590
·
2012-03-20 18:00
用Javascript在编辑框和TextArea的光标处插入文字,支持连续插入
functionsetCaret(textObj){ if(textObj.createTextRange){ textObj.caretPos=document.selection.
createRange
山哥
·
2012-02-23 17:00
使用JS在textarea在光标处插入内容
functioninsertAtCursor(myField,myValue) { //IEsupport if(document.selection) { myField.focus(); sel=document.selection.
createRange
山哥
·
2012-02-23 17:00
通过JS获取用户本地图片路径并显示的代码
if(obj){//ieif(window.navigator.userAgent.indexOf("MSIE")>=1){obj.select();returndocument.selection.
createRange
·
2012-02-16 20:44
document.selection.
createRange
方法
document.selection.
createRange
()根据当前文字选择返回TextRange对象,或根据控件选择返回ControlRange对象。
teresa502
·
2012-02-08 11:00
JavaScript
html
function
input
character
button
AxWindowsMediaPlayer的用法详细
d.selection.
createRange
().text:''):(d.getSelection?
kingmax54212008
·
2012-01-05 18:00
function
网络
String
object
Integer
url
使用滤镜获取ie,ff和chrome的file全路径
window.navigator.userAgent.indexOf("MSIE")>=1){//ie obj.select(); path=document.selection.
createRange
fengxubb
·
2011-11-28 16:07
function
chrome
职场
休闲
file获取file全路径
上一页
2
3
4
5
6
7
8
9
下一页
按字母分类:
A
B
C
D
E
F
G
H
I
J
K
L
M
N
O
P
Q
R
S
T
U
V
W
X
Y
Z
其他