11

我想tel:12345仅使用 Javascript 而不是锚点来触发 HREF。我只是想获取输入字段的值并使用 JS 提示用户拨打输入的号码。我的触发器将是位于字段旁边的按钮。

建议?

4

3 回答 3

20

采用:

window.open('tel:12345');
于 2013-05-27T23:25:32.720 回答
1
<button onclick="myFunction()">
Call
</button>

function myFunction(){
var a = document.getElementById('input').value;
window.location.href = 'tel:' + a;
}
You can also view the live version on my website:
https://www.theharnishes.com/phone.html

Here we make a button and assign a function to it that bassically select the input, get the value, and the window.location.href will have the value of the input and it'll sent the url to call any number. 
于 2021-03-24T23:42:32.520 回答
0

js调用非常简单。使用我们的:onclick 函数、Location 和 tel 我们可以在任何标签、window 中执行此操作。位置('电话:号码')

点我拨打199
于 2021-09-06T00:48:53.930 回答