duanmao2774 2017-02-06 02:40
浏览 301
已采纳

ios Javascript history.go(-1)不适用于ios 10.2.1中的Safari

I use php to check email format and use Javascript to alert but I use history.go(-1) it redirect in url/undefined

this is my code

if (!filter_var($mail, FILTER_VALIDATE_EMAIL)) {
$message = "Email format not true";
echo "<script type='text/javascript'>alert('$message');window.location = history.go(-1); </script>";
}

thanks for all your help

  • 写回答

1条回答 默认 最新

  • duanfen1992 2017-02-06 02:46
    关注
    window.location = history.go(-1);
    

    Is wrong. It should be:

    window.history.go(-1);
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?