これは私のコードです:
foreach($patients as $patient) {
$this->table->add_row(++$i,
$patient->opd_no,
$patient->sname.', '.$patient->fname.' '.$patient->mname,
strtoupper($patient->gender),
date('M d, Y', strtotime($patient->birth_date)),
$patient->address_no.' '.$patient->address_st.' '.$patient->address_brgy.' '.$patient->address_local.' '.$patient->address_province,
anchor('consultation/queue/'.$patient->pk_id, 'Initial', ar
ray('class' => 'queue'))
);
アンカーに追加したい。
編集:わかりましたので、これが回避策になることを期待してこれを追加しました:
anchor('#'.$patient->pk_id, 'Initial', array('class' => 'queue', 'rel' => 'ic'))
jquery経由でrel属性を使用して関数を呼び出してみました。このようなもの:
$('a[rel=ic]').click(function() {});
しかし、その後、codeigniter エラー ページが表示され、
あなたが見ているページは、CodeIgniter によって動的に生成されています。