HTML 中的 a 字符是超鏈接的標(biāo)記,可以與 JavaScript 一起使用來創(chuàng)建交互式網(wǎng)站。以下是一些設(shè)置 a 字符的方式:
<a >Google</a>
上面的代碼創(chuàng)建了一個超鏈接,指向Google。
<a href="javascript:void(0)" onclick="alert('Hello World!')">Click Me</a>
上面的代碼創(chuàng)建了一個超鏈接,當(dāng)用戶單擊該鏈接時,彈出一個包含“Hello World!”的警告框。
<a href="#" onclick="document.getElementById('myDiv').style.display='block'">Show Div</a> <div id="myDiv" style="display:none">This is my div.</div>
上面的代碼創(chuàng)建了一個超鏈接,當(dāng)用戶單擊該鏈接時,顯示一個帶有文本的 DIV 元素。
以上是使用 HTML 和 JavaScript 設(shè)置 a 字符的一些示例。
下一篇git和vue