使用 JavaScript 库

改变这个:

<script src=""></script>

对此:

<script src="https://www.91xjr.com/lib/w3.js"></script>

如何 - 幻灯片

JavaScript 示例

<img class="nature" src="img_snowtops.jpg" width="100%">
<img class="nature" src="img_mountains.jpg" width="100%">
<img class="nature" src="img_nature.jpg" width="100%">

<script>
w3.slideshow(".nature", 1500);
</script>
亲自试一试 »

隐藏/显示 HTML 元素

JavaScript 示例

<p>
<button onclick="w3.hide('#London')">Hide London</button>
<button onclick="w3.show('#London')">Show London</button>
</p>

<div id="London" class="w3-container w3-red">
  <h2>London</h2>
  <p>London is the capital city of England.</p>
</div>

<div id="Paris" class="w3-container w3-green">
  <h2>Paris</h2>
  <p>Paris is the capital of France.</p>
</div>

<div id="Tokyo" class="w3-container w3-blue">
  <h2>Tokyo</h2>
  <p>Tokyo is the capital of Japan.</p>
</div>
亲自试一试 »

恭喜!

您刚刚学习了使用 JavaScript 库的基础知识。