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

时间:2017-02-06 02:40:41

标签: javascript php ios safari

我使用php检查电子邮件格式并使用Javascript提醒但我使用history.go(-1)它重定向到url / undefined

这是我的代码

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>";
}

感谢您的所有帮助

1 个答案:

答案 0 :(得分:0)

<template name="options">
  <div class="twin-group js-radioGroup" data-id={{_id}}>
    <ul class="upShift">
      {{#each values}}
        <li>
          <label class="twin-item">
            <input type="radio" value={{this.result}}>
            <span class="radio-label">{{this.label}}</span>
          </label>
        </li>
      {{/each}}
    </ul>
  </div>
</template>

错了。它应该是:

window.location = history.go(-1);