网站首页 手机版
 注册 登录
您现在的位置: 畅无忧设计 >> 网页特效 >> 表单按钮 >> 正文
最新文章
· 输入框输入提示代码
· 文本框提示代码
· 让表单ctrl加回车提交
· 简单代码实现JS多级Select联动菜单
· JS验证数字位数
· 带有介绍的Select列表菜单代码
· Js注册等待
· 点击按钮插入文字在文本框
· radio背景颜色选择器
· 表单内容提交等待效果
热门文章
 Js实现点击添加增加一行,点击删除
 DIV中实现input垂直居中
 常用的选择省份城市的联动下拉列表
 JS动态增加删除一组输入框
 jQuery实现Email邮箱地址自动补全代
 Select实现多选
 JS动态批量创建带表单文本框的表格
 JS实现上传本地图片前先预览
 日期选择下拉框
 漂亮的点击弹出的登陆框
相关文章
没有相关文章
点击按钮插入文字在文本框
来源:源码爱好者 更新时间:2012/1/17 21:24:46 阅读次数: 我要投稿
△运行 ☉预览 #复制 +收藏
特效代码:
<!doctype html>
<html>
<head>
<title>点击按钮插入文字</title>
<script language="javascript">
 //移动光标到最后
 var setPos=function(o){
  if(o.setSelectionRange){//W3C
   setTimeout(function(){
    o.setSelectionRange(o.value.length,o.value.length);
    o.focus();
   },0);
  }else if(o.createTextRange){//IE
   var textRange=o.createTextRange();
   textRange.moveStart("character",o.value.length);
   textRange.moveEnd("character",0);
   textRange.select();
  }
 };
function Insert(str) { 
var obj = document.getElementById('content'); 
setPos(obj);
if(document.selection) { 
obj.focus(); 
var sel=document.selection.createRange(); 
document.selection.empty(); 
sel.text = str; 
} else { 
var prefix, main, suffix; 
prefix = obj.value.substring(0, obj.selectionStart); 
main = obj.value.substring(obj.selectionStart, obj.selectionEnd); 
suffix = obj.value.substring(obj.selectionEnd); 
obj.value = prefix + str + suffix; 

obj.focus(); 
}         

</script>
</head>
<body>
    <table width="630" height="55" border="0" cellpadding="0" cellspacing="0">
        <tr><td>
          
            <label>
              <textarea id="content" name="textarea" style="width:500px; height:120px;"></textarea>
        </label>
      
          </td></tr>
  <tr>
    <td width="567" align="left" >
        <input  type="button" style="cursor:hand" onclick="javascript:Insert('急')" value="急 " /> 
        <input  type="button" style="cursor:hand" onclick="javascript:Insert('发')" value="发 " /> 
        <input  type="button" style="cursor:hand" onclick="javascript:Insert('求')" value="求 " /> 
        <input  type="button" style="cursor:hand" onclick="javascript:Insert('回')" value="回 " /> 
        <input  type="button" style="cursor:hand" onclick="javascript:Insert('货')" value="货 " /> 
        <input  type="button" style="cursor:hand" onclick="javascript:Insert('至')" value="至 " /> 
        <input  type="button" style="cursor:hand" onclick="javascript:Insert('车')" value="车 " /> 
        <input  type="button" style="cursor:hand" onclick="javascript:Insert('到')" value="到 " /> 
        <input  type="button" style="cursor:hand" onclick="javascript:Insert('要')" value="要 " /> 
        <input  type="button" style="cursor:hand" onclick="javascript:Insert('在')" value="在 " /> 
        <input  type="button" style="cursor:hand" onclick="javascript:Insert('剩')" value="剩 " /> 
        <input  type="button" style="cursor:hand" onclick="javascript:Insert('空')" value="空 " /> 
        <input  type="button" style="cursor:hand" onclick="javascript:Insert('装')" value="装 " /> 
        <input  type="button" style="cursor:hand" onclick="javascript:Insert('占')" value="占 " /> 
        <input  type="button" style="cursor:hand" onclick="javascript:Insert('或')" value="或 " /> 
        <input  type="button" style="cursor:hand" onclick="javascript:Insert('节')" value="节 " /> 
        <input  type="button" style="cursor:hand" onclick="javascript:Insert('大')" value="大 " /> 
        <input  type="button" style="cursor:hand" onclick="javascript:Insert('小')" value="小 " /> 
        <input  type="button" style="cursor:hand" onclick="javascript:Insert('卸')" value="卸 " /> 
   
</td>
  </tr>
</table>
</body>
</html>

△运行 ☉预览 #复制 +收藏
特效说明:

  一款实用的网页特效,点击按钮在文本框中插入文字,特别是在一些需要输入文字的地方尤其适用,可减少用户输入的麻烦,只需点击一下对应的按钮,即可把文字插入到文本框的指定位置,不过目前来说,本代码不算完善,有一些小的Bug希望高手们帮忙修正哦。

  • 上一篇文章:
  • 下一篇文章:
  • 关于我们 - 联系我们 - 广告服务 - 在线投稿 - 友情链接 - 网站地图 - 版权声明
    CopyRight 2008-2010, CWYDESIGN.COM - 畅无忧设计, Inc. All Rights Reserved
    滇ICP备09005765号