我正在使用Google Apps脚本制作简单的网络应用。 当我写作
< a href = "tel: telphone no" > telphone no< / a >
在模板文件中,错误发生如下。
Invalid script or HTML content: HtmlOutput:4+11 - 28: malformed url tel: telphone no
当我嵌入javascript来制作html < a href = "tel: ...
时,
标签'tel:'自动删除。
如何使用GAS制作< a href = "tel:
代码?
答案 0 :(得分:0)
网址中不允许使用多个字符,例如“电话”和“否”之间的空格。
要在代码中生成网址时避免此类问题,请使用encodeURIComponent()
。请参阅this reference。