簡體   English   中英

將按鈕從移動瀏覽器重定向到手機上的消息傳遞應用程序

[英]Redirect a button from a mobile browser to a messaging app on phone

在移動瀏覽器上查看:我有一個聯系頁面,我想添加一個“ SMS”按鈕,當用戶單擊該按鈕時,它將與設置的聯系號碼一起重定向到移動設備上的默認消息傳遞應用程序。

我怎樣才能做到這一點?

我提供的代碼功能的雙向參考摘要。 單擊“ SMS”按鈕后,將調用一個javascript函數,該函數將使用contact_no字段的值並重定向到默認消息傳遞應用程序的頁面URL。

您需要在頁面上包含jquery文件:在這里,我提供了一個工作原理的baisc代碼:

HTML:

<input type="text" name="contact_no_input_field" id="contact_no_input_field">
<input type="button" value="SMS" onclick="call_fun()">
<script type="text/javascript">

JS:

function call_fun()
{
     var contact_no = $('#contact_no_input_field').val();
     window.location.href="path/to/default messaging app/?contact_no="+contact_no;
}

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM