我有一个动态创建的表,我想在每行中放置一个带有onclick事件的EDIT / DELETE按钮。
但是,我不知道如何使用行的id使它们唯一,然后为每个事件创建一个onclick事件,以便我可以更新/删除行中的值。
我试过了:
<INPUT TYPE='BUTTON' NAME='EDIT_PRODUCT_FROM_SEARCH' ID=".$row['alpha_p_ID']." VALUE='Delete'>
但我不知道怎么讲这个事件:
$('what to write here?').click(function() {
});
编辑:
按钮的创建有效但onclick事件没有。代码如下:
PHP按钮代码
results_table = "<table cellspacing='0' style='border: 1px solid #405D99'><tr bgcolor='#405D99' style='color: white'><th>Main Image</th><th>Gallery Image 1</th><th>Gallery Image 2</th><th>Name</th><th>Type</th><th>Manufacturer</th><th>Quantity</th><th>Price-Wholesale</th><th>Price-Retail</th><th>Options</th></tr>";
while($row = mysql_fetch_array($results)){
$results_table .= "<tr>";
$results_table .= "<td bgcolor='#dfe3ee'><a href='products/".$row['alpha_p_imglink_main']."' rel='lightbox'><img src='products/".$row['alpha_p_imglink_main']."' width='150px' height='150px'; border='0'/></a></td>";
$results_table .= "<td bgcolor='#dfe3ee'><a href='products/".$row['alpha_p_imglink_gal1']."' rel='lightbox'><img src='products/".$row['alpha_p_imglink_gal1']."' width='150px' height='150px'; border='0'/></a></td>";
$results_table .= "<td bgcolor='#dfe3ee'><a href='products/".$row['alpha_p_imglink_gal2']."' rel='lightbox'><img src='products/".$row['alpha_p_imglink_gal2']."' width='150px' height='150px'; border='0'/></a></td>";
$results_table .= "<td bgcolor='#dfe3ee' align='center'>$row[alpha_p_name_en]</td>";
$results_table .= "<td bgcolor='#dfe3ee' align='center'>$row[alpha_p_type]</td>";
$results_table .= "<td bgcolor='#dfe3ee' align='center'>$row[alpha_p_firm_owner]</td>";
$results_table .= "<td bgcolor='#dfe3ee' align='center'>$row[alpha_p_quantity]</td>";
$results_table .= "<td bgcolor='#dfe3ee' align='center'>$row[alpha_p_price_wholesale]</td>";
$results_table .= "<td bgcolor='#dfe3ee' align='center'>$row[alpha_p_price_retail]</td>";
$results_table .= "<td colspan='1' rowspan='1' bgcolor='#f7f7f7' align='center'>";
$results_table .= "<a href='#' NAME='EDIT_PRODUCT_FROM_SEARCH' ID=".$row['alpha_p_ID']." CLASS='EDIT_BUTTON_CLASS'>Edit</a>";
$results_table .= "<a href='#' NAME='DEL_PRODUCT_FROM_SEARCH' ID=".$row['alpha_p_ID']." CLASS='DELETE_BUTTON_CLASS'>Delete</a>";
$results_table .= "</tr>";
}
echo "Query: " . $query . "<br />";
$results_table .="</table>";
echo $results_table;
的onClick:
$('.EDIT_BUTTON_CLASS').on("click", function(event) {
var e_id = $(this).attr('id');
var p_edit_id = $('input[name=P_NAME_EDIT]');
(p_edit_id).val(e_id);
alert("aaa");
});
onclick事件应填入带有id的文本框并发布提醒。
答案 0 :(得分:3)
一个想法是改变
<INPUT TYPE='BUTTON' NAME='EDIT_PRODUCT_FROM_SEARCH' ID="'.$row['alpha_p_ID'].'" VALUE='Delete'>
到
echo '<INPUT TYPE="BUTTON" NAME="EDIT_PRODUCT_FROM_SEARCH" ID=".$row['alpha_p_ID']."
onclick="your_js_delete_function('.$row['alpha_p_ID'].');" VALUE="Delete">'
然后在JS
function yourj_s_delete_function(id) {
//do something
// you could also id = $(this).attr('id');
}
您还可以指定一个类,以便
$('what to write here?').click(function() {
});
变为
$('.delete_button').click(function() {
var id = $(this).attr('id');
.... rest of the code
});
注意:如果您的$row['alpha_p_id']
返回一个数值,那么最好添加一个字符串值作为前缀作为数字ID只会导致标记验证失败
因此,您可以将ID="'.$row['alpha_p_ID'].'"
更改为ID="btn_'.$row['alpha_p_ID'].'"
你需要改变
var id_str = $(this).attr('id');
var id=id_str.split("_", 1);
<强>更新强>
正如您所说,这些按钮是动态创建的 - 您需要使用on()
方法而不是“click -
$('.delete_button').on("click", function(event){
alert("I am clicked!");
});
答案 1 :(得分:2)
您可以将事件绑定到所有input[type="button"]
,然后从另一个属性获取ID值。例如:
$('input[type="button"]').click(function() {
$id = $(this).id;
$action = $(this).val();
});
答案 2 :(得分:0)
您可以使用jQuery的attr()方法来访问生成事件的元素的ID。
<input class='mybutton' type='button' name='edit_product_from_search' id=".$row['alpha_p_id']." value='delete'>
并在jQuery代码中:
$('.mybutton').click(function() {
id = $(this).attr('id');
});
$(this)在jQuery中引用了生成事件的元素。
答案 3 :(得分:0)
如果您为输入提供类,则可以使用选择器
var buttons = $('.classname');
使用这一系列按钮,您应该可以:
$.each(buttons, function(){
$(this).click(function(){
// Click event here
}
});
答案 4 :(得分:0)
$("#<?php print $row['alpha_p_ID'] ?>").click(function() {
});
答案 5 :(得分:-1)
或者将属性 class =“delete”添加到按钮
<INPUT TYPE='BUTTON' NAME='EDIT_PRODUCT_FROM_SEARCH' ID=".$row['alpha_p_ID']." class="delete" VALUE='Delete'>
然后
$('.delete').click(function(){
id = $(this).attr('ID');
// delete code goes here...
});