チェックボックスをクリックして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>
誰でも私を助けることができますか?
ご協力いただきありがとうございます。