Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
ユーザーが div をクリックしたときにユーザーをページにリダイレクトしようとしています。ユーザーをhtmlビューからCIの新しいコントローラーにリダイレクトする方法を知りたいですか?
ありがとうございました
HTML ビューに次のコードを追加します。
$(function(){ $('#div_id').on('click',function(){ window.location.href = "<?php echo site_url('new_controller'); ?>"; }); });
div_id必要に応じてとを変更してnew_controllerください。
div_id
new_controller