gpt4 book ai didi

javascript - 如何获取数据表中单元格的属性

转载 作者:行者123 更新时间:2023-12-02 14:33:57 25 4
gpt4 key购买 nike

我正在尝试从单元格获取属性,但无法。

我的代码:

HTML

<td id="project_quantity_<?=$user->id;?>"    data-type="project"        data-quantity="true" data-id="<?=$user->id;?>"><?=$user->project_quantity; ?></td>
<td id="entailment_quantity_<?=$user->id;?>" data-type="entailment" data-quantity="true" data-id="<?=$user->id;?>"><?=$user->entailment_quantity; ?></td>

JAVSCRIPT

jQuery(document).ready(function()
{
table.cells('[data-quantity="true"]').every(function()
{
jQuery.ajax({
url:"<?=base_url("admin/users/getQuantity")?>/"+this.{GET_DATA_ID_ATTRIBUTE},
data:{type:this.{GET_DATA_TYPE_ATTRIBUTE}},
type:"post",
success:function(data)
{
cell = table.cell("#"+data.type+"_quantity_"+data.id);
cell.data(data.ids+"/"+cell.data());
},
error: function(x,y,z){console.log(x);}
});
});
});

代码上的键 {} 是我想要从单元格获取属性的位置。

我希望我的解释已经很清楚了。

最佳答案

var dataType = $(this).data('type');
... // your AJAX stuff directly below.

这应该会给你在 dom 对象上设置为 data-type= 的值。

关于javascript - 如何获取数据表中单元格的属性,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37614266/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com