我有一個JavaScript函數,在div innerhtml中調用此結果。點擊按鈕時如何提醒'Alert Function'?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調用的,我使用ajax將值傳遞給控制器,然後在div中使用innerhtml視圖。當它顯示在div上,但onclick按鈕不起作用。 –