我想为重定向目的添加脚本。在
/amember/library/Am/Paysystem/Abstract.php in thanksaction function
我正在使用以下代码
$response->addScript()
->setScript(<<<CUT
jQuery(function($){
window.location.href ="http://www.google.com/";
});
CUT
);
但我收到以下错误:
Fatal error: Call to undefined method Am_Mvc_Response::addScript() in /amemberroot/library/Am/Paysystem/Abstract.php
有谁知道可能是什么问题?
提前致谢。