Skip to content

Instantly share code, notes, and snippets.

@Springshen
Last active July 13, 2018 00:44
Show Gist options
  • Save Springshen/5a17adceaade6b7a7e2bd3624bd17960 to your computer and use it in GitHub Desktop.
Save Springshen/5a17adceaade6b7a7e2bd3624bd17960 to your computer and use it in GitHub Desktop.
javascript replace web page text content
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<script src="https://cdn.bootcss.com/jquery/3.3.1/jquery.js"></script>
</head>
<body>
<div class="nav-bj" id="nav-bj">
<div class="nav" id="nav">
<ul style="width:1000px; margin:0 auto;">
<li><a href="javascript:void(0);">中国</a></li>
<li><a href="javascript:void(0);">b</a></li>
<li><a href="javascript:void(0);">b</a></li>
<li><a href="javascript:void(0);">中国</a></li>
<li><a >xx</a></li>
<li><a >xx</a></li>
</ul>
</div>
</div>
</body>
<script>
let txt = {'中国': 'China', b: 2, 'xx' : 'ggg'};
for (let [key, value] of Object.entries(txt)) {
//console.log(key, value);
document.body.innerHTML = document.body.innerHTML.replace(new RegExp(key, 'gi'), value);
}
</script>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment