©
이 문서에서는 PHP 중국어 웹사이트 매뉴얼 풀어 주다
Attribute Name | Type | Required | Default | Description |
---|---|---|---|---|
address | string | Yes | n/a | the e-mail address |
text | string | No | n/a | the text to display, default is the e-mail address |
encode | string | No | none | How to encode the e-mail. Can be one of none, hex or javascript. |
cc | string | No | n/a | e-mail addresses to carbon copy. Separate entries by a comma. |
bcc | string | No | n/a | e-mail addresses to blind carbon copy. Separate entries by a comma. |
subject | string | No | n/a | e-mail subject. |
newsgroups | string | No | n/a | newsgroups to post to. Separate entries by a comma. |
followupto | string | No | n/a | addresses to follow up to. Separate entries by a comma. |
extra | string | No | n/a | any extra information you want passed to the link, such as style sheet classes |
属性 | 类型 | 是否必须 | 缺省值 | 描述 |
---|---|---|---|---|
address | string | Yes | n/a | 电子邮件地址 |
text | string | No | n/a | 邮件链接上显示的文本,默认为电子邮件地址 |
encode | string | No | none | 编码方式,可选值为 none,hex或javascript |
cc | string | No | n/a | 邮件抄送地址,多条地址信息以逗号分隔 |
bcc | string | No | n/a | 邮件暗送地址,多条地址信息以逗号分隔 |
subject | string | No | n/a | 邮件主题 |
newsgroups | string | No | n/a | 发送到新闻组的地址,多条地址信息以逗号分隔 |
followupto | string | No | n/a | 追踪地址信息,多条信息以逗号分隔 |
extra | string | No | n/a | 其它需要传递给链接的信息,如css样式 |
mailto automates the creation of mailto links and optionally encodes them. Encoding e-mails makes it more difficult for web spiders to pick up e-mail addresses off of your site.
mailto 自动生成电子邮件链接,并根据选项决定是否对地址信息编码. 电子邮件地址编码使得网络嗅探程序难以收集到电子邮件地址信息.
Technical Note: javascript is probably the most thorough form of encoding, although you can use hex encoding too.
技术要点: 尽管可以使用 hex 进制编码,但 javascript 已经算得上是很彻底的编码形式了.
Example 8-15. mailto
|