DIV CSS 佈局教程網

 DIV+CSS佈局教程網 >> 網頁腳本 >> JavaScript入門知識 >> 關於JavaScript >> js字符串完全替換函數分享
js字符串完全替換函數分享
編輯:關於JavaScript     

這幾天用到了js字符串完全替換的功能,啥都不說,直接上代碼,需要拷走即可:

復制代碼 代碼如下:
<!DOCTYPE html>
<html>
    <head>
        <meta charset="utf-8" />
        <title></title>
        <script type="application/javascript">
            function testStr(){
                var temp=document.getElementById("content").value;
                var newContent=temp.replace(/"/g,'\'');
                alert(newContent);
            }
        </script>
    </head>
    <body>
        <textarea id="content"></textarea>
        <input type="button" value="干活兒" onclick="testStr();"/>
    </body>
</html>

以上代碼實現了替換引號的功能,/g表示全部替換。其他需求,改改就能用。這裡我做個筆記,希望對大家有所幫助!

XML學習教程| jQuery入門知識| AJAX入門| Dreamweaver教程| Fireworks入門知識| SEO技巧| SEO優化集錦|
Copyright © DIV+CSS佈局教程網 All Rights Reserved