python/Day21-30/code/new/web1901/js_practice_2.html
2024-12-04 00:04:56 +08:00

35 lines
847 B
HTML
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title></title>
<style>
h1 {
width: 600px;
height: 40px;
font-size: 36px;
line-height: 40px;
margin: 0 auto;
border: 1px solid red;
}
</style>
</head>
<body>
<h1 id="welcome">欢迎来到千锋教育成都校区学习&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</h1>
<script>
let content = '马化腾fuck you, 操你大爷,日你二爷'
// let pattern = new RegExp('马化腾|[日操]', 'g')
let pattern = /fuck|马化腾|[日操]/gi
content = content.replace(pattern, '*')
alert(content)
const welcome = document.getElementById('welcome')
function move() {
let str = welcome.textContent
str = str.substring(1) + str.charAt(0)
welcome.textContent = str
}
setInterval(move, 500)
</script>
</body>
</html>