我有一个模块调用ftp_data
。另外,我的Module Assets文件夹bonfire/modules/ftp_data/assets/js/ftp_data.js
中有一个js文件。
现在我想将此文件加载到我的视图
内部视图
<!-- Edit by Yesh -->
<div class="container-fluid">
<form method="POST" id="url_finder" name="url_finder">
<div class="span4">
<h3>Search URL : <input type="search" id="search_url" name="search_url" placeholder="www.example.com"></h3>
</div>
<div class="span3">
<button id="url_btn" name="url_btn" class="btn" type="submit">Search</button>
</div>
</form>
</div>
<!-- Edit by Yesh -->
在ftp_data.js
内$(function(){
$('#search_url').keyup(function(){
var s = new RegExp(this.value.toLowerCase());
$('.result_table .result_row').each(function() {
if(s.test(this.innerHTML.toLowerCase())){
$(this).show();
}else{
$(this).hide();
}
});
});
});
答案 0 :(得分:2)
要在View模块中加载js / css文件,您应该使用构造函数方法。您只需复制我在下面添加的代码即可。
代码如:
public function __construct()
{
parent::__construct();
Assets::add_module_js('ftp_data', 'ftp_data.js');
}
add_module_js():第一个参数定义要使用的模块的名称,第二个参数定义要加载的文件。
答案 1 :(得分:0)
将此代码放在您的视图文件
上<script src="assets/js/ftp_data.js"></script>
答案 2 :(得分:0)
最后我找到了解决方案。这是我发现的。我希望它也能帮到你。
public function index()
{
//---functions will goes here
//--Add this code before closing public function index
Assets::add_module_js('ftp_data', 'ftp_data.js');
//--ftp_data is the Module name.
//--ftp_data.js is the name of the js file that is inside the module/assets/js/
}