要实现从一个页面A跳到另一个页面B,js实现就在A的js代码加跳转代码
JS跳转大概有以下几种方式:
第一种:(跳转到b.html)
第二种:(返回上一页面)
第三种:
第四种:
第五种:
如果是跳转网页:
class IndexController extends Controller
{
public function index()
{
redirect('http://www.ab.com');// URL重定向
}
}
如果是跳转控制器页面:
class IndexController extends Controller
{
public function index()
{
$this->redirect('About/index');//跳转到About控制器的index方法页面
}
}