Heim  >  Artikel  >  Backend-Entwicklung  >  java - php中执行一个函数时,如何自动调用函数内的一个链接地址

java - php中执行一个函数时,如何自动调用函数内的一个链接地址

WBOY
WBOYOriginal
2016-07-06 13:53:431023Durchsuche

比如执行a.php中的show()方法,我想在函数执行完后跳转到b.php去,JS中有window.location.href,php中应该用什么呢,忘记了

回复内容:

比如执行a.php中的show()方法,我想在函数执行完后跳转到b.php去,JS中有window.location.href,php中应该用什么呢,忘记了

  1. 使用header函数

    <code class="php">header("Location: https://post.zz173.com",true,301); 
    //确保重定向后,后续代码不会被执行 
    exit;</code>
  2. 写入meta 标签

    <code class="html"><meta http-equiv="refresh" content="1;url=https://post.zz173.com"> </code>
  3. 写入javascript标签

    <code class="php"><php echo script language="javascript" type="text/javascript">";  
    echo "window.location.href='https://post.zz173.com'";  
    echo "";  </php></code>

header方法就可以的。你试试

<code>header("Location:b.php"); exit();</code>
Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn