我有以下代码。但这会继续重新加载页面而不是重定向。
<script>
function my()
{
document.write("<meta content='0;url=http://google.com' http-equiv='refresh'></meta>");
}
</script>
<center> <input name='image' onclick='my();' src='http://i.imgur.com/jgI5Ryt.png' type='image'/></center>
注意:出于某种原因我需要元刷新。所以请仅使用上面的代码帮助我。
答案 0 :(得分:0)
您可以通过替换
来实现它 document.write("<meta content='0;url=http://google.com' http-equiv='refresh'></meta>");
与
$('head').append('<meta content='0;url=http://google.com' http-equiv='refresh'></meta>');