0

我有一个动态创建的表,我想在每一行中放置一个带有 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;

点击:

                        $('.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 填充文本框并发布警报。

4

6 回答 6

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!");
});

http://api.jquery.com/on/

于 2012-08-22T12:45:49.573 回答
2

您可以将事件绑定到 all input[type="button"],然后从另一个属性获取 ID 值。例如:

$('input[type="button"]').click(function() {
    $id = $(this).id;
    $action = $(this).val();
});
于 2012-08-22T12:42:55.157 回答
0
$("#<?php print $row['alpha_p_ID'] ?>").click(function() {

});
于 2012-08-22T12:46:31.200 回答
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');
});

jQuery 中的 $(this) 指的是生成事件的元素。

于 2012-08-22T12:44:49.390 回答
0

如果你给输入一个类,你可以使用选择器

var buttons = $('.classname');

使用这一系列按钮,您应该能够:

$.each(buttons, function(){
    $(this).click(function(){
         // Click event here
    }
});
于 2012-08-22T12:45:08.747 回答
-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...

});
于 2012-08-22T12:48:35.913 回答