用jquery替换页面加载时的DIV内容

时间:2013-03-14 16:33:58

标签: jquery

使用jquery是否有一种方法可以获取DIV的内容并在页面加载时将其替换为其他内容?

<div class="content">Before</div>

<div class="content">After</div>

3 个答案:

答案 0 :(得分:5)

使用text():

$(".content").text("After");

现场演示: http://jsfiddle.net/heY3j/

答案 1 :(得分:3)

为了背叛Curt的回答,对此的全面启示将是:

$(document).ready( function() {
    $(".content").text("After");
});

这将在加载窗口时执行,并更新所需div元素的内部文本。

答案 2 :(得分:0)

**在worpdress中使用jquery替换页面加载时的DIV内容第一个替换DIV,第二个替换文本另外onload jQuery String Replace **

    <script type="text/javascript"> 

    jQuery(function($){ 
    $( ".yourclass " ).replaceWith( "<h6>New heading</h6>" );
     });

    </script>
 **OR For text replace**

    <script type="text/javascript"> 
    jQuery(function($){ 
    $( ".single_add_to_cart_button " ).text( "Sepete ekle" );
     });
    </script>


/* For String Replace */

<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
<script type="text/javascript"> 
$(document).ready(function() {
    var strNewString = $('body').html().replace(/\On hold/g,'Processing');
    $('body').html(strNewString);
});

</script>