div innerhtmlでこの結果を呼び出すjavascript関数があります。クリック時のボタンのときに 'アラート機能'を警告する方法は?innerhtmlのアラートボタン
$html.='<table class="table table-striped table-bordered table-hover">
<thead>
<tr>
<th width="5%">#</th>
<th>Title</th>
<th>Action</th>
</tr>
</thead>
<tbody>';
$c=1;
foreach($titles AS $item){
$html.='<tr>
<td>'.$c.'</td>
<td>'.urldecode($item->title_content).'</td>
<td><button type="button" class="btn btn-danger" onclick="alert(\'**Alert Function**\')">Delete</button></td>
</tr>';
$c++;
}
$html.='</tbody>
</table>';
echo $html;
おかげ
を作成しますか? –
実際には上記のコードはjavascripによって呼び出され、divのinnerhtmlビューとajaxを使ってコントローラに値を渡します。 divに表示されているときにonclickボタンが機能しないとき。 –