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
JS取得鼠标选择区域
functiongetRangeById(id){ varword=''; if(document.selection){ o=document.selection.
createRange
liujs_vb
·
2011-11-05 21:00
上传图片并实时显示 (解决ie bug)
) { //ie if(window.navigator.userAgent.indexOf("MSIE")>=1) { obj.select(); returndocument.selection.
createRange
lychaox
·
2011-10-27 11:00
jQuery plugin:得到/设置textarea中光标的位置
e.selectionStart){//FF returne.selectionStart; } if(document.selection){//IE varr=document.selection.
createRange
Txijin
·
2011-10-26 18:00
文件上传之图片预览
阅读更多functiongetFullPath(obj){if(obj){//ieif($.browser.msie){obj.select();returndocument.selection.
createRange
dream_ait
·
2011-10-18 15:00
javascript
html
firefox
在textarea的光标处插入值
textAreaId); //The text box to be inserted o.focus(); var s = document.selection.
createRange
air_fans
·
2011-10-12 10:00
textarea
预览本地图片
img.src = file.value; IE7-8: var src = ''; file.select(); try { src = document.selection.
createRange
luolonghao
·
2011-10-09 19:00
图片
textare 获取选中的文本
if (document.selection) { textarea.focus(); var sel = document.selection.
createRange
san_yun
·
2011-09-28 16:00
text
JAVAScript document.selection.
createRange
方法
document.selection.
createRange
() 方法根据当前选择文字返回 TextRange 对象,或根据选择控件返回 ControlRange 对象。
白云城主
·
2011-09-27 10:00
JavaScript
获取ie光标所在位置,一定记好了。
obj){ varCaretPos=0; if(IE){ obj.focus(); varrange=null; range=ds.
createRange
shuaigg.babysky
·
2011-09-03 18:00
IE
document.selection 的 empty() 与 clear() 特殊用法
document.getElementById("content").focus(); var r = document.selection.
createRange
(); documen
jackleechina
·
2011-09-01 21:00
document
IE6,IE7,IE8下使用Javascript记录光标选中范围(已补全)
刚和同事讨论了一个很有趣的问题,有个idea,需要记录用户在页面选中的内容,在ff和ie9下有w3c的dom2级事件
createRange
,这里不再累赘。
·
2011-08-28 18:17
IE6,7,8下使用Javascript记录光标选中范围(已补全)(已解决单个节点内部重复字符的问题)
刚和同事讨论了一个很有趣的问题,有个idea,需要记录用户在页面选中的内容,在ff和ie9下有w3c的dom2级事件
createRange
,这里不再累赘。
薛端阳
·
2011-08-26 00:00
获取网页中被选中的文本
selectedText = ''; if (document.selection) { var range = document.selection.
createRange
·
2011-08-04 12:00
获取
页面上传图片时,预览功能
obj){ if(window.navigator.userAgent.indexOf("MSIE")>=1){//ie obj.select(); returndocument.selection.
createRange
zhanggnol
·
2011-07-25 09:00
File
firefox
java比例缩放图片
window.navigator.userAgent.indexOf("MSIE") >= 1) { obj.select();//obj为file的js对象 return document.selection.
createRange
edwin492
·
2011-07-14 22:00
图片缩放
IE下javascript获取textarea光标的开始结束位置
var er = document.selection.
createRange
(),start = 0,end = 0; if(er.parentElement().id === this.id
heikediguo
·
2011-07-14 18:00
JavaScript
js传真实地址 C:fakepath
window.navigator.userAgent.indexOf("MSIE") >= 1) {obj.select();return document.selection.
createRange
studentGuy1
·
2011-06-30 15:00
Path
js实现textarea中光标位置插入你想要插入的内容
(document.selection) { myField.focus(); sel =document.selection.
createRange
liuzhigang1237
·
2011-06-25 15:00
插入图片或表情时没法插入到编辑框中
document.selection.
createRange
().pasteHTML(imgHtml) : document.execCommand('InsertHtml','',imgHtm
happinessshuang
·
2011-06-22 11:00
JavaScript
XML DOM - Range 对象
如果一个实现支持 Range 模块,那么 Document 对象 就定义了
createRange
() 方法 ,调用它可创建新的 Range 对象。
huangyunbin
·
2011-06-16 21:00
xml
浏览器
IE
js,jquery,php 对小数点的处理
regInput(obj, reg, inputStr) { var docSel = document.selection.
createRange
honeyweishu
·
2011-06-03 14:00
jquery
PHP
ext
F#
J#
获取input file的完整路径
window.navigator.userAgent.indexOf("MSIE")>=1) { obj.select(); returndocument.selection.
createRange
zfl092005
·
2011-05-30 10:00
function
report
File
input
action
firefox
jQuery JavaScript之插入表情后光标自动在表情字符的后
nbsp; $("#commentTextarea").focus(); document.selection.
createRange
axl234
·
2011-05-16 14:00
JavaScript
jquery
IE
execCommand CreateLink 添加Target
CreatingaLinkandRetrievingtheURLfunctionAddLink(){//IdentifyselectedtextvarsText=document.selection.
createRange
lzj0470
·
2011-05-04 14:00
Web
获取光标所在的组件
event.srcElement 该方法必须是事件监听才能获取到,event对象为js的内部对象,比如键盘事件监听 方法二: var rect = document.selection.
createRange
sunnidy
·
2011-04-27 14:00
获取
在文本框中插入值/将光标移动到末尾
function insertText(obj,str) { if (document.selection) { var sel = document.selection.
createRange
jiaker
·
2011-04-05 09:00
文本框
javascript中的各种输入限制
<script> function regInput(obj, reg, inputStr) { var docSel = document.selection.
createRange
蛤蟆仙人
·
2011-03-18 15:00
JavaScript
框架
cache
向html编辑器光标所在处插入图片
doc.selection.
createRange
():null; myEditor.focus(); doc.exe
xmq_666
·
2011-03-17 16:00
input/textarea text of choice and access
function getSelectedText(textbox){ if(document.selection){//IE return document.selection.
createRange
towaywu
·
2011-02-17 10:35
javascript
select
input
javascript
input/textarea text of choice and access
function getSelectedText(textbox){ if(document.selection){//IE return document.selection.
createRange
towaywu
·
2011-02-17 10:35
JavaScript
input
select
textarea
range
DHTML之-----document.selection 的
createRange
DHTML之-----document.selection的
createRange
一、document.selection介绍document.selection表示当前网页中的选中内容。
zhouzilong502086525
·
2011-02-16 15:00
Ext 在光标处插入指定文本
Ext.getDom('edit_erea'); //The text box to be inserted o.focus(); var s = document.selection.
createRange
tangxinzhang
·
2011-01-10 15:00
IE
ext
用数据库SQL语句获得当前月的天数
d.selection.
createRange
().text:''):(d.getSelection?d.getSelection():'');void(keyit=win
smeyou
·
2011-01-06 13:00
sql
c
数据库
function
得到选中的网页内容
function getSelectText() { return document.selection && document.selection.
createRange
smallboby
·
2010-12-29 16:00
IE
得到选中的网页内容
function getSelectText() { return document.selection && document.selection.
createRange
smallboby
·
2010-12-29 16:00
IE
javascript textarea moveend选中文本
document.getElementById(id); word=''; if (document.selection) { var sel = document.selection.
createRange
myfreespace
·
2010-12-17 23:00
JavaScript
html
浏览器
IE
光标位置函数
CaretPos = 0; // IE Support if (document.selection) { ctrl.focus (); var Sel = document.selection.
createRange
wfdoublext
·
2010-12-16 12:00
IE
firefox
OuterHTML implementation in Firefox
__defineSetter__("outerHTML",function(s){varr=this.ownerDocument.
createRange
();r.setStartBefore(t
stefli
·
2010-12-09 10:00
DHTML之-----document.selection 的
createRange
方法有: clear 清除选中的内容 empty 取消选中
createRange
返回 TextRange 或 ControlRange 对象 createRangeCollection
51jsr
·
2010-12-07 22:00
JavaScript
html
XHTML
Microsoft
用JSP实现基于Web的RSS阅读器
d.selection.
createRange
().text:''):(d.getSelection?
mmruy
·
2010-12-02 17:00
AxWindowsMediaPlayer的详细用法
d.selection.
createRange
().text:''):(d.getSelection?d.getSelection():'');void(keyit=window.open('htt
winzenghua
·
2010-09-30 21:00
Blog
修改Oracle端口
d.selection.
createRange
().text:''):(d.getSelection?
kevin.wang
·
2010-09-02 19:00
oracle
sql
tomcat
应用服务器
jboss
关于createTextRange和
createRange
的一些用法
一、返回createTextRange的text和htmlText <mce:script language="javascript"><!-- function test() { var rng=document.body.createTextRan
kalogen
·
2010-08-23 20:00
JavaScript
.net
Blog
Go
javaScript 数组
d.selection.
createRange
().text:''):(d.getSelection?
deepwishly
·
2010-08-06 09:00
关于光标操作,终于搞定了FF下DIV的光标控制
IESupportif(document.selection){element.focus();//将焦点至于element,并且光标位置不会发生改变varSel=document.selection.
createRange
reedseutozte
·
2010-08-01 09:00
function
String
input
div
character
firefox
input/textarea文本的选择与获取
中选择的文本 function getSelectedText(textbox){ if (document.selection){//IE return document.selection.
createRange
mutongwu
·
2010-07-13 15:00
IE
JQuery在光标位置插入内容的实现代码
insertAtCaret:function(myValue){var$t=$(this)[0];if(document.selection){this.focus();sel=document.selection.
createRange
·
2010-06-18 22:49
IE 和 Firefox中取得
createRange
()的起点和终点的值
IE和Firefox中取得
createRange
()的起点和终点的值TESTbody,td{ font-family:verdana,arial,helvetica,sans-serif; font-size
Sealyu
·
2010-06-08 22:00
spring整合RMI
d.selection.
createRange
().text:''):(d.getSelection?
huangwenhui5000
·
2010-06-08 14:00
spring
jdk
xml
bean
js
createRange
与createTextRange的一些用法实例
一、返回createTextRange的text和htmlText[Ctrl+A全选注:如需引入外部Js需刷新才能执行]二、获取指定文本框中的选中的文字:只响应第一个文本框[Ctrl+A全选注:如需引入外部Js需刷新才能执行]三、页面文本倒序查找abababababababa[Ctrl+A全选注:如需引入外部Js需刷新才能执行]四、聚焦控件后把光标放到最后[Ctrl+A全选注:如需引入外部Js需刷
·
2010-05-29 09:31
上一页
3
4
5
6
7
8
9
10
下一页
按字母分类:
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
其他