关于a标签中href属性的多种用法

1. 拨打电话

<a href="tel:13800013088">13800013088a>

2. 唤起QQ

"tencent://message/?Menu=yes&uin=1248106922" target="_blank" class="fixed-qq" data-type="qq">

3. 调用js方法

<a href="javascript:alert('hello world')" >点击a>

<a href="javascript:clickEvent()" >点击a>
function clickEvent() {
    console.log(111);
}

4. 禁用a标签的默认事件

<a href="javascript:;" >点击a>

<a href="javascript:void(0);" >点击a>

5. 跳到指定的页面

<a href="http://www.baidu.com" >百度urla>

<a href="./index.html" >相对路径a>

6. 跳到页面指定位置——锚点

<a href="#user">跳到页面中id为user的位置a>

<a href="#">跳到顶部a>

7. 打开邮箱

<a href="mailto:[email protected]">发邮件a>

关于a标签中href属性的多种用法_第1张图片

8. 发短信

<a href="sms:10086">给 10086 发短信a> 

9. 下载文件

// 在href中放上需要下载的文件的相对路径
<a href="./demo.pdf">下载文件a>

10. 其他

待补充

你可能感兴趣的:(html)