0
我是CI的初學者, 我使用facebox插件在CodeIgniter中加載頁面[查詢結果], 即從表中選擇所有數據。 它的工作正常, 問題是我需要只顯示某一天的數據,即從用戶輸入。querystring與codeigniter和facebox插件
我的代碼是:
<script type="text/javascript">
jQuery(document).ready(function($) {
$('a[rel*=facebox]').facebox({
loadingImage : '<?=base_url();?>facebox/loading.gif',
closeImage : '<?=base_url();?>facebox/closelabel.gif'
})
})
</script>
...........
....
<a href="<?=base_url();?>admission/details" rel="facebox" >view details </a>
如果我添加一個文本框這個頁面如何傳遞價值給控制器? 無法更改facebox屬性。