我使用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>";
}
感谢您的所有帮助
答案 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);