我只想用 jquery 点击复选框来调用 cakephp 动作。我只想通过我想使用 $.get 来刷新当前页面,因为我想将其他变量发送到操作。我尝试了以下代码:
HTML 代码:
<?php $chkOpt = array('pertinence' => $pert, 'onClick' => 'refresh_current_page()', 'id' => 'matchCoche'); ?>
<td class="check-column"><?= $form->checkbox($waiting['ArgusWaitingsMobilesPrice']['brand'] . ';' . $waiting['ArgusWaitingsMobilesPrice']['mobile'] . ';' . $waiting['search']['RefAvatar']['mobile_id'], $chkOpt) ?></td>
Javascript代码:
<script type="text/javascript">
function refresh_current_page() {
$('#matchCoche').ready(function() {
$.get("<?php echo $this->here ?>");
});
}
</script>
有人可以帮助我吗?
非常感谢您的帮助。