Maison > développement back-end > tutoriel php > javascript - php 页面跳转

javascript - php 页面跳转

WBOY
Libérer: 2016-06-06 20:10:51
original
850 Les gens l'ont consulté

这样写可以正常跳转:

<code>echo "<script>";
echo "window.location.href = '$url'";
echo "</script>";</code>
Copier après la connexion
Copier après la connexion

而下面代码服务器返回空白页面,没有执行我的命令,请问是怎么回事?php小白,照葫芦画瓢写的代码:

<code>echo "<script>";
echo "function()
{
   alert($error_msg);
   setTimeout(window.location.href = '$url',5);
}";                    
echo "</script>";
    </code>
Copier après la connexion
Copier après la connexion

回复内容:

这样写可以正常跳转:

<code>echo "<script>";
echo "window.location.href = '$url'";
echo "</script>";</code>
Copier après la connexion
Copier après la connexion

而下面代码服务器返回空白页面,没有执行我的命令,请问是怎么回事?php小白,照葫芦画瓢写的代码:

<code>echo "<script>";
echo "function()
{
   alert($error_msg);
   setTimeout(window.location.href = '$url',5);
}";                    
echo "</script>";
    </code>
Copier après la connexion
Copier après la connexion

setTimeout(func,5);
前面func是一个方法

<code>echo "<script>";
echo "function func()
{
   alert($error_msg);
   window.location.href = '$url';
}";
setTimeout(func,5);                    
echo "</script>";</code>
Copier après la connexion

楼上仁兄正解

<code><?php $url = "http://www.baidu.com";
$error_msg = "error";
echo "<script>";
echo "function jump()
{
   alert('$error_msg');
   window.location.href = '$url';
}
setTimeout(jump, 3000);
";                    
echo "";</code>
Copier après la connexion

你js部分只是定义了函数没有调用啊

Étiquettes associées:
source:php.cn
Déclaration de ce site Web
Le contenu de cet article est volontairement contribué par les internautes et les droits d'auteur appartiennent à l'auteur original. Ce site n'assume aucune responsabilité légale correspondante. Si vous trouvez un contenu suspecté de plagiat ou de contrefaçon, veuillez contacter admin@php.cn
Tutoriels populaires
Plus>
Derniers téléchargements
Plus>
effets Web
Code source du site Web
Matériel du site Web
Modèle frontal