会员
周边
众包
新闻
博问
闪存
赞助商
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
QuantSeven
代码改变人生,技术改变世界
博客园
首页
管理
2013年5月22日
实用jquery扩展收集(1):在光标处插入内容 和 获取textarea选中的值
摘要: (1):在光标处插入值 1 $.fn.extend({ 2 insertAtCursor : function(myValue) { 3 var $t = $(this)[0]; 4 if (document.selection) { 5 this.focus(); 6 sel = document.selection.createRange(); 7 sel.text = myValue; 8 this...
阅读全文
posted @ 2013-05-22 13:57 QuantSeven
阅读(3954)
评论(0)
推荐(0)
编辑