Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

第 18 期(W3C标准-HTML):a 标签 #21

Open
wingmeng opened this issue May 27, 2019 · 0 comments
Open

第 18 期(W3C标准-HTML):a 标签 #21

wingmeng opened this issue May 27, 2019 · 0 comments

Comments

@wingmeng
Copy link
Collaborator

wingmeng commented May 27, 2019

题目:

使用 a 标签分别实现下面的功能:

  1. 下载一张图片:<img src="images/photo.jpg">
  2. 呼出拨打电话给 4006-066-066 的界面(手机端)
  3. 呼出发送短信给 10086 的界面(手机端)
  4. 呼出本地邮件客户端发送邮件给 [email protected] 的界面

参考答案:

<!-- 第 1 题 -->
<a href="images/photo.jpg" download>
  <img src="images/photo.jpg">
</a>

<!-- 第 2 题。也可省略中划线,效果都一样 -->
<a href="tel:4006-066-066">4006-066-066</a>

<!-- 第 3 题 -->
<a href="sms:10086">发短信给10086</a>

<!-- 第 4 题 -->
<a href="mailto:[email protected]">[email protected]</a>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant