[原創]javascript實現textarea中游標處插入字元的實現[相容ie和firefox]

來源:互聯網
上載者:User

     因項目需要,需要在多行文字框中的游標位置插入字元,利於js的 document.selection屬性很快就實現,但發現在firefox中無法相容selection屬性,網上找了很久也沒有找到合適的方法,經過研究,改出了相容ie和FF的完美解決方案
代碼如下:
function AddText(str)
{
    var ubb=document.getElementById("TxtContent");
    var ubbLength=ubb.value.length;
    ubb.focus();
    if(typeof document.selection !="undefined")
    {
        document.selection.createRange().text=str; 
    }
    else
    {
        ubb.value=ubb.value.substr(0,ubb.selectionStart)+str+ubb.value.substring(ubb.selectionStart,ubbLength);
    }
}

例如:
function Underline()
{
    var tUnderline=prompt("請輸入要設定的底線文字\n標籤:[u][/u]","")
    if(tUnderline=="" || tUnderline==null)
    {
        return;
    }
    tUnderline="[u]"+tUnderline+"[/u]"
    AddText(tUnderline);
}
HTML部分:
<a href="javascript:Underline();void(0)"><img src="Images/Style/underline.gif" alt="下線線" border="0"/></a>

註:1、TxtContent為textarea的ID,函數str參數為要插入的字元
      2、在ie6.0和FF2.0中調試通過!!

 

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.