| 网站首页 | 硬件维修 | 应用学院 | 网络组建 | 网站制作 | 菜鸟黑客 | 编程之道 | 数码大全 | 娱乐休闲 | 软件下载 | 在线视频 | 请您留言 | 技术论坛 | 
专 题 栏 目
最 新 热 门
最 新 推 荐
相 关 文 章
  • 用javascript实现利用FL…

  • javascript实例教程(20)…

  • javascript实例教程(20)…

  • javascript实例教程(20)…

  • javascript实例教程(20)…

  • javascript实例教程(20)…

  • javascript实例教程(20)…

  • javascript实例教程(20)…

  • javascript实例教程(19)…

  • javascript实例教程(19)…

  • Q
    您现在的位置: 我是IT人 >> 网站制作 >> JSP >> 文章正文
    实现textarea内字符串选择查询替换功能           
    实现textarea内字符串选择查询替换功能
    作者:网络 文章来源:转载 点击数: 更新时间:2006-1-19
    [ 字体:缩小 正常 放大 | 双击自动滚屏 ]
    请选择合适的字体颜色:
     

    ----------自动替换版----------


    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
    <HTML>
    <HEAD>
    <TITLE> New Document </TITLE>
    <SCRIPT LANGUAGE="JavaScript">
    var staus ;
    var oRange;
    var objTimer;
    var objTimer1;
    var objTimer2;
    var sBookMark;
    <!--
    function selectall(objAll,OBJSingle){
    alert(objAll.checked);
    for (var i=0;i<OBJSingle.length;i++){
    if (objAll.checked){
    for( objs in OBJSingle){
    alert(objs.value);
    objs.checked=true;
    }
    }
    else{
    OBJSingle.checked=false;
    }
    }
    }

    function fnSearch() {
    fm1.txtarea1.focus();
    oRange = fm1.txtarea1.createTextRange();
    searchtxt(1);
    }

    function searchtxt(n){
    var v1;
    var v2;
    var txtr;
    var blnS;

    window.clearInterval(objTimer1);
    window.clearInterval(objTimer2);

    v1 = fm1.txtarea1.value;
    v2 = fm1.txtarea2.value;
    v3 = fm1.txtarea3.value;

    if( n == 1) {
    if (oRange != null) {
    oRange.findText(v2);
    if  (oRange.findText(v2) == true){
    //sBookMark = oRange.getBookmark();
    oRange.select();
    oRange.scrollIntoView();
    objTimer2 = window.setInterval("searchtxt(2)",1000);
    }
    else{
    objTimer = window.setInterval("searchtxt(3)",1000);
    }
    }
    staus = 2 ;
    }
    else if(n==2)  {
    oRange.text = v3;
    staus = 1;
    objTimer1 = window.setInterval("searchtxt(1)",1000);
    }
    else if(n==3) {
    staus = 3 ;
    window.clearInterval(objTimer);
    window.clearInterval(objTimer1);
    window.clearInterval(objTimer2);
    }
    }
    //-->
    </SCRIPT>
    </HEAD>
    <BODY>
    <FORM METHOD=POST name="fm1">
    <TEXTAREA NAME="txtarea1" ROWS="20" COLS="50">
    this is the original text, and this is the string will be repalced.
    this is the original text, and this is the string will be repalced.
    this is the original text, and this is the string will be repalced.
    this is the original text, and this is the string will be repalced.
    this is the original text, and this is the string will be repalced.
    this is the original text, and this is the string will be repalced.
    </TEXTAREA>
    <TEXTAREA NAME="txtarea2" ROWS="20" COLS="50"> will be </TEXTAREA>
    <TEXTAREA NAME="txtarea3" ROWS="20" COLS="50"> has been </TEXTAREA>
    <input type="button" value="search" onclick="fnSearch()">
    </FORM>

    [1] [2] [3] [4] 下一页  

    文章录入:54iter    责任编辑:54iter 
  • 上一篇文章:

  • 下一篇文章:
  • 发表评论】【加入收藏】【告诉好友】【打印此文】【关闭窗口
    网友评论:(只显示最新10条。评论内容只代表网友观点,与本站立场无关!)
    | 设为首页 | 加入收藏 | 联系站长 | 关于我们 | 友情链接 | 版权申明 |