[HTML源码]微信名片将网页中的手机号保存至通讯录

Vcard协议是一个国际通用的通讯录规范。今天公司前端说网页中的手机号保存不到通讯录,因此才在此做个笔记,供大家使用。

微信名片将网页中的手机号保存至通讯录

关于vCard的规范我就不去说它了,在wiki百科上有详细解释。下面就从HTML源码分享下网页中的手机号保存到通讯录的详细步骤。大家现在开发的电子名片基本上也是同一个道理。

HTML源码:

  1. <!DOCTYPE html>
  2. <html>
  3.  <head>
  4.   <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
  5.   <title>手机名片生成器</title>
  6.   <meta charset="UTF-8" />
  7.   <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0,minimum-scale=1.0, user-scalable=no" />
  8.   <meta name="format-detection" content="telephone=no" />
  9.   <link rel="stylesheet" href="./css/normalize.min.css" />
  10.   <script type="text/javascript" src="./js/zepto.min.js"></script>
  11.   <script type="text/javascript" src="./js/qrcode.js"></script>
  12.   <style type="text/css">
  13. #mytable {
  14.     width: 100%;
  15. }
  16. #mytable, #mytable td {
  17.     border: 1px solid #ccc;
  18. }
  19. #mytable input, #mytable select {
  20.     height: 40px;
  21.     border: none;
  22.     width: 100%;
  23.     -webkit-appearance: none;
  24.     box-sizing: border-box;
  25.     outline: none;
  26. }
  27. .title {
  28.     text-align: right;
  29.     padding-right: 5px;
  30. }
  31. #qrcode {
  32.     text-align: center;
  33.     width: 100%;
  34.     overflow: hidden;
  35.     padding: 20px 0;
  36. }
  37. #tips {
  38.     position: fixed;
  39.     bottom: -40%;
  40.     left: 50%;
  41.     display: inline-block;
  42.     padding: 10px;
  43.     border-radius: 10px;
  44.     background-color: rgba(0,0,0,.8);
  45.     color: #fff;
  46.     text-align: center;
  47. }
  48.   </style>
  49.  </head>
  50.  <body>
  51.   <table id="mytable">
  52.    <tbody>
  53.     <tr>
  54.      <td colspan="4">
  55.       <div style="height: 60px; line-height: 60px; text-align: center; font-size: 24px;">
  56.        手机名片生成器
  57.       </div></td>
  58.     </tr>
  59.     <tr>
  60.      <td width="25%" class="title">姓氏</td>
  61.      <td width="25%"><input type="text" id="fname" placeholder="姓氏" maxlength="4" /></td>
  62.      <td width="25%" class="title">名字</td>
  63.      <td width="25%"><input type="text" id="name" placeholder="名字" maxlength="4" /></td>
  64.     </tr>
  65.     <tr>
  66.      <td class="title">职称</td>
  67.      <td colspan="3"><input type="text" id="title" placeholder="职称" maxlength="10" /></td>
  68.     </tr>
  69.     <tr>
  70.      <td class="title">移动电话</td>
  71.      <td colspan="3"><input type="tel" id="cell" placeholder="xxx-xxxx-xxxx" maxlength="13" /></td>
  72.     </tr>
  73.     <tr>
  74.      <td class="title">家庭电话</td>
  75.      <td colspan="3"><input type="tel" id="home" placeholder="xxx-xxxxxxxx" maxlength="13" /></td>
  76.     </tr>
  77.     <tr>
  78.      <td class="title">家庭住址</td>
  79.      <td colspan="3"><input type="text" id="adr" placeholder="家庭住址" maxlength="20" /></td>
  80.     </tr>
  81.     <tr>
  82.      <td class="title">公司名称</td>
  83.      <td colspan="3"><input type="text" id="org" placeholder="公司名称" maxlength="20" /></td>
  84.     </tr>
  85.     <tr>
  86.      <td class="title">个人网站</td>
  87.      <td colspan="3"><input type="url" id="url" placeholder="http://www.xxx.com" maxlength="25" /></td>
  88.     </tr>
  89.     <tr>
  90.      <td class="title">电子邮箱</td>
  91.      <td colspan="3"><input type="email" id="email" placeholder="[email protected]" maxlength="25" /></td>
  92.     </tr>
  93.     <tr>
  94.      <td class="title">生日</td>
  95.      <td colspan="3"><input type="date" id="bday" placeholder="yyyy-mm-dd" /></td>
  96.     </tr>
  97.     <tr>
  98.      <td><select id="radius"><option value="0">直角</option><option value="0.25">小圆角</option><option value="0.5">大圆角</option></select></td>
  99.      <td><select id="fill"><option value="#000">黑色块</option><option value="#002C7D">蓝色块</option><option value="#AE4141">红色块</option><option value="#FF79E1">粉色块</option><option value="#7CFF57">绿色块</option></select></td>
  100.      <td><select id="mode"><option value="0">无签名</option><option value="1">签名1</option><option value="2">签名2</option></select></td>
  101.      <td><select id="fontcolor"><option value="#000">黑签名</option><option value="#002C7D">蓝签名</option><option value="#AE4141">红签名</option><option value="#FF79E1">粉签名</option><option value="#7CFF57">绿签名</option></select></td>
  102.     </tr>
  103.     <tr>
  104.      <td colspan="4"><input type="button" onclick="createvcf()" value="生成名片二维码" /></td>
  105.     </tr>
  106.    </tbody>
  107.   </table>
  108.   <div id="qrcode">
  109.    <div style="box-sizing: border-box; padding: 0 20px; width: 100%; text-align: left;">
  110.     本工具可将你的信息生成一张二维码,你可以按住生成的二维码将其保存至手机然后通过微信或者其他通讯工具发给其他人,其他用户扫描你的二维码之后可自动将你的信息保存至你的
  111.     <span style="color: red;">手机通讯录</span>。注意是
  112.     <strong style="color: red;">手机通讯录</strong>哦~
  113.     <br />使用过程中完全不占你流量,不窃取你任何信息,打开本页面后断开手机网络依旧可以
  114.     <span style="color: red;">免流量离线生成</span>二维码。
  115.    </div>
  116.   </div>
  117.   <div id="tips"></div>
  118.   <script type="text/javascript">
  119.  function createvcf() {
  120.     var a, b = $("#fname").val().replaceAll(" ", ""),
  121.     c = $("#name").val().replaceAll(" ", ""),
  122.     d = $("#title").val().replaceAll(" ", ""),
  123.     e = $("#adr").val().replaceAll(" ", ""),
  124.     f = $("#org").val().replaceAll(" ", ""),
  125.     g = $("#cell").val().replaceAll(" ", ""),
  126.     h = $("#home").val().replaceAll(" ", ""),
  127.     i = $("#url").val().replaceAll(" ", ""),
  128.     j = $("#email").val().replaceAll(" ", ""),
  129.     k = $("#bday").val().replaceAll(" ", "");
  130.     b ? c ? g || h ? (a = "BEGIN:VCARD", a += "\r\nN:" + b + ";" + c + ";;;", a += "\r\nFN: " + c + "  " + b, d && (a += "\r\nTITLE:" + d), e && (a += "\r\nADR;HOME:;;" + e + ";;;;"), f && (a += "\r\nORG:" + f), g && (a += "\r\nTEL;CELL,VOICE:" + g), h && (a += "\r\nTEL;HOME,VOICE:" + h), i && (a += "\r\nURL;WORK:" + i), j && (a += "\r\nEMAIL;INTERNET,HOME:" + j), k && (a += "\r\nBDAY:" + k), a += "\r\nEND:VCARD", $("#qrcode").empty().qrcode({
  131.         render: "image",
  132.         ecLevel: "0" == $("#mode").val() ? "L": "H",
  133.         size: 300,
  134.         background: "#fff",
  135.         fill: $("#fill").val(),
  136.         radius: $("#radius").val(),
  137.         mode: 1 * $("#mode").val(),
  138.         fontcolor: $("#fontcolor").val(),
  139.         label: b + c,
  140.         text: a
  141.     }), tips("名片生成成功"), window.scrollTo(0, 1e3)) : tips("必须输入一个电话") : tips("请填写您的名字") : tips("请填写您的姓氏")
  142. }
  143. String.prototype.replaceAll = function(a, b) {
  144.     return this.replace(new RegExp(a.replace(/([\(\)\[\]\{\}\^\$\+\-\*\?\.\"\'\|\/\\])/g, "\\$1"), "ig"), b)
  145. };
  146. var _tipstime, tips = function(a) {
  147.     _tipstime && clearTimeout(_tipstime);
  148.     var b = $("#tips").text(a);
  149.     b.css({
  150.         transform: "translateX(" + -b.width() / 2 + "px)",
  151.         bottom: "20%"
  152.     }),
  153.     _tipstime = setTimeout(function() {
  154.         b.empty().css("bottom", "-40%")
  155.     },
  156.     1500)
  157. };
  158.   </script>
  159.  </body>
  160. </html>

如果在使用过程中发现转换到vCard中的数据是乱码,可以采用下面的JS进行处理。

  1. function utf16to8(str) {
  2.       var out, i, len, c;
  3.       out = "";
  4.       len = str.length;
  5.       for (i = 0; i < len; i++) {
  6.         c = str.charCodeAt(i);
  7.         if ((c >= 0x0001) && (c <= 0x007F)) {
  8.           out += str.charAt(i);
  9.         } else if (c > 0x07FF) {
  10.           out += String.fromCharCode(0xE0 | ((c >> 12) & 0x0F));
  11.           out += String.fromCharCode(0x80 | ((c >> 6) & 0x3F));
  12.           out += String.fromCharCode(0x80 | ((c >> 0) & 0x3F));
  13.         } else {
  14.           out += String.fromCharCode(0xC0 | ((c >> 6) & 0x1F));
  15.           out += String.fromCharCode(0x80 | ((c >> 0) & 0x3F));
  16.         }
  17.       }
  18.       return out;
  19.     }

最后给大家分享一个打包的demo,大家可以下载测试用。

 

文件下载

社区直播小程序点击获取
你想把广告放到这里吗?

发表评论

您必须 登录 才能发表留言!