Heim  >  Artikel  >  Web-Frontend  >  mailto的使用_html/css_WEB-ITnose

mailto的使用_html/css_WEB-ITnose

WBOY
WBOYOriginal
2016-06-24 11:44:281306Durchsuche

用mailto会使用Windows自带的邮件进行发送邮件

方式一,代码如下:

【注意:一下表单元素中的 name的值不能改变】

<form action="mailto:lisi@126.com">     <table id="tbMail">         <tr>             <td>收件人</td>             <td><input type="text" name="to"/></td>         </tr>         <tr>             <td>主题</td>             <td><input type="text" name="subject"/></td>         </tr>         <tr>             <td>抄送</td>             <td><input type="text" name="cc"/></td>         </tr>         <tr>             <td>暗送</td>             <td><input type="text" name="bcc"/></td>         </tr>         <tr>             <td>内容</td>             <td><input type="text" name="body"/></td>         </tr>         <tr>             <td></td>             <td><input type="submit" value="发送"/></td>         </tr>     </table> </form>

显示如下,用到的css样式,看

方式二,使用a标签:

Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn