<!DOCTYPE html>
<html>
<meta charset="utf-8">
<title>编程狮(w3cschool.cn)</title>
<link rel="stylesheet" href="https://7npmedia.w3cschool.cn/w3.css">
<script src="https://7npmedia.w3cschool.cn/w3.js"></script>
<body class="w3-container">
<h2>测试 CSS 中的 W3.JS</h2>
<ul id="id01" class="w3-ul w3-blue-grey">
<li w3-repeat="customers">{{CustomerName}}</li>
</ul>
<script>
w3.getHttpObject("https://7npmedia.w3cschool.cn/customers1.js", myFunction);
function myFunction(myObject) {
w3.displayObject("id01", myObject);
}
</script>
</body>
</html>