JQuery字串文字替換並且加樣式
阿新 • • 發佈:2018-12-16
<!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>
初始樣式:
點選“點我”按鈕之後,“我”替換成“你”並且改變顏色為紅色: