1. 程式人生 > >JQuery字串文字替換並且加樣式

JQuery字串文字替換並且加樣式

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8"> 
<title>JQuery字串文字替換並加樣式</title> 
<script src="https://cdn.bootcss.com/jquery/1.10.2/jquery.min.js">
</script>
<script>
$(document).ready(function(){
  $("#click").click(function(){
    // $('p').hide();
var txt = $('#txt').html(); console.log(txt); var tt=txt.replace(/我/g, '<span style="color:red;">你</span>'); $('#txt').html(tt); }); });
</script> </head> <body> <p id="txt">如果你點我,我就會消失。</p> <button id="click" >點我!</button> </body
>
</html>

初始樣式:
這裡寫圖片描述
點選“點我”按鈕之後,“我”替換成“你”並且改變顏色為紅色:
這裡寫圖片描述