|
新版本支持javascript类.根据用户手册,是直接可以调用jquery的.但为什么我的配置不成功.
controller页:
PHP复制代码
$this->load->library('javascript');
$this->jquery->click('#aaa',$this->jquery->hide('#aaa'));
$this->load->view('login_view');
复制代码
view页,head标签中已加<script type="text/javascript" src="http://localhost/js/jquery-1.7.min.js"></script>.
PHP复制代码
<div id="aaa">It is supposed to be hiden when I click here.</div>
复制代码
但是运行下来,结果是:
Fatal error: Call to a member function _hide() on a non-object in D:\xampp\htdocs\system\libraries\Javascript.php on line 542.
是我配置不对,还是CI系统本身javascript类不成熟导致的系统错误? |
|