Chrome问题-通过单击URL打开移动SMS应用

时间:2018-07-16 05:37:34

标签: javascript android html ios google-chrome

我需要通过单击URL来打开带有预填充身体和收件人的手机的短信应用程序。

所以我写了这段代码,在Firefox中工作正常。 但它不适用于Chrome。

 <html>
 <head>
 <script type="text/javascript">
  function f(){ 
   window.location="sms://+12345?body=1234";} 
 </script> 
 </head>
 <body onload="f();">
 </body>
 </html>

有什么想法要解决吗?

0 个答案:

没有答案