0

我有以下代码。但这会继续重新加载页面而不是重定向。

    <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>

注意:由于某种原因,我需要元刷新。所以请只用上面的代码帮助我。

4

1 回答 1

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>');

于 2013-06-06T20:26:02.680 回答