Are there any text selector in jquery?

前端 未结 3 1457
野的像风
野的像风 2021-01-25 00:22

Are there any text selector in jquery ?

My Code

Hello World! Hello World!

Reslut Should be (Using Jque

3条回答
  •  青春惊慌失措
    2021-01-25 01:07

    $('anything').html(function(i, v) {
        return v.replace(/(World)/g, '$1');
    });  
    

    The above snippet uses functionality added in jQuery 1.4.

    Note: this solution is safe for elements containing only raw text (and no child elements).

提交回复
热议问题