我使用$ this-> js(true,'你的js here');但是有问题:
如果满足某些条件,我将页面重定向到其他地方,js函数如下:
top.location = "http://some-url.com?param1=AAA¶m2=BBBB"
但&字符转换为:&
我知道我可以使用$this->api->redirect('some-url', array('param1'=>AAA, 'param2'=>BBB));
但由于某些原因,我必须使用js函数,但只能正确编写html字符..如何实现这个?
答案 0 :(得分:2)
正确的方法:
if($condition){
$this->js(true)->univ()->location('http://some-url.com?param1=AAA¶m2=BBBB');
}