【发布时间】:2015-11-09 09:23:23
【问题描述】:
有没有办法将用户从网页重定向到有时间延迟的短信编辑器?像这样的:
function Redirect() {
window.location="http://www.tutorialspoint.com";
}
document.write("You will be redirected to main page in 10 sec.");
setTimeout('Redirect()', 10000);
仅使用“sms:?body=Hello world”代替“http://www.tutorialspoint.com”?
【问题讨论】:
-
@Locercus 我试过了,但它不适用于“sms:”,只能使用“mailto:”。
-
更正:实际上它不仅仅在 Chrome 中工作。
-
这可能是 Chrome 中的一个功能/错误。见superuser.com/questions/451350/…
标签: javascript jquery jscript