邓士鹏___________石家庄职业技术学院__________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________________
PHP和JS跳转
在PHP中可以利用
<?php
header('Location: taget.html');
?>
在JS中则用
document.location="target.html";
当然.也可以在PHP中调用JS语句
记得利用转义符就好了~.