关于设置location.href = `tel:123456#`,#号不显示问题

跳转到拨号页面,没有显示设定的#

由于tel属性设置不能识别#号,需要对# 号进行转义。对应的代码是 %23 。例如 :
···
let uri = "tel://" + "*12346#";
uri = uri.replaceAll("#","%23");
···

你可能感兴趣的:(关于设置location.href = `tel:123456#`,#号不显示问题)