国产gaysexchina男同gay,japanrcep老熟妇乱子伦视频,吃奶呻吟打开双腿做受动态图,成人色网站,国产av一区二区三区最新精品

App下載
首頁javascriptpjQuery HTML Element - 如何僅對段落中的數(shù)字應用CSS

jQuery HTML Element - 如何僅對段落中的數(shù)字應用CSS

我們想知道如何僅對段落中的數(shù)字應用CSS。

<!DOCTYPE html>
<html>
<head>
<script type='text/javascript'
  src='http://code.jquery.com/jquery-1.9.1.js'></script>
<style type='text/css'>
span {
  color: blue
}
</style>
<script type='text/javascript'>
$(window).load(function(){
    $('p').html(function(index, value) {
        return value.replace(/(\d+)/g, '<span>$1</span>');
    });
});
</script>
</head>
<body>
  <p>Text and numbers: 123</p>
  <p>123 and text</p>
</body>
</html>