我正在使用JQuery .post()将内容加载到表单中的div。在我的控制器中,这是代码:
$id=$this->input->post('id');
$this->load->model('ledger_model');
$data['receiptdata'] = $this->ledger_model->getreceiptdata($id);
$this->load->view('UpdateReceipt', $data);
我的问题出现在数组$ data中的值,我传递给视图“UpdateReceipt”,我的所有jquery代码都失败了。但是当数组没有返回任何内容时,代码运行良好。你能帮我解决这个问题吗?
标签中的一些功能是:
$(function()
{
$('.date-pick').datePicker().val(new Date().asString()).trigger('change');
});
$(document).ready(function() {
$("input[name$='payform']").click(function() {
var test = $(this).val();
if (test=="check")
{
$("#checkfields").show();
}
else
{
$("#checkfields").hide();
document.getElementById('chamt').value="";
document.getElementById('chno').value="";
document.getElementById('chbank').value="";
}
});
});