Jquery从表中删除项目

时间:2016-09-08 15:36:45

标签: javascript jquery html-table

Image of the table here

我的系统中有一个下拉项,它在点击时构建一个选项表,我想注入一些Jquery,这将删除列表中的一些项目,这是一个创建的项目之一的示例(训练)

<td class="ui-crmPopup-trigger" onclick="parent.Setopit_productid('Training','2','/CRM1/CustomPages/Products/ProductsSummary.asp?SID=94266470236396&amp;F=&amp;J=Products/ProductsSummary.asp&amp;Key58=2&amp;Prod_ProductId=2','Products','');$crmPopupParent.oPopupopit_productid.hide();">Training</td>

任何人都可以帮助代码看起来像什么?对不起,如果我错过了一些关键信息。

1 个答案:

答案 0 :(得分:1)

如果你想做的就是删除一些文字,你可以这样做。

https://plnkr.co/edit/WTZu33hxKJaiGcK5TESM

$('.remove-on-click').on('click', function(){
    $(this).text('');
});

或类似的东西,

$('.remove-on-load').text('');