admin管理员组文章数量:1344510
I have table and i want to filter all td values based on class name and then if td holds specific text replace it with new text. below is my current code. its not working properly and updating all the td's . please advice how to proceed.
html
<td class="actionclass">' . $page->action . '</td>
jquery
$("tbody").find("tr").each(function() { //get all rows in table
var ratingTdText = $(this).find('td.actionclass').text();
if ((ratingTdText == "saved block")) {
this.innerHTML = 'changed';
}
});
===
update
$("tbody tr td.actionclass").each(function() {
var ratingTdText = $(this).text();
console.log(ratingTdText);
if(($(this).is(':contains("new")')) || ($(this).is(':contains("saved")'))) {
(this).text().replace("top", "TopBar");
(this).text().replace("left", "LeftBar");
(this).text().replace("bottom", "BottomBar");
}
});
I have table and i want to filter all td values based on class name and then if td holds specific text replace it with new text. below is my current code. its not working properly and updating all the td's . please advice how to proceed.
html
<td class="actionclass">' . $page->action . '</td>
jquery
$("tbody").find("tr").each(function() { //get all rows in table
var ratingTdText = $(this).find('td.actionclass').text();
if ((ratingTdText == "saved block")) {
this.innerHTML = 'changed';
}
});
===
update
$("tbody tr td.actionclass").each(function() {
var ratingTdText = $(this).text();
console.log(ratingTdText);
if(($(this).is(':contains("new")')) || ($(this).is(':contains("saved")'))) {
(this).text().replace("top", "TopBar");
(this).text().replace("left", "LeftBar");
(this).text().replace("bottom", "BottomBar");
}
});
Share
Improve this question
edited Mar 19, 2017 at 16:02
hansi silva
asked Mar 19, 2017 at 15:18
hansi silvahansi silva
991 gold badge2 silver badges15 bronze badges
2 Answers
Reset to default 6this
refers to TR
element not the TD
, change the selector in the find()
and your code will work
$("tbody").find("tr").each(function() { //get all rows in table
var ratingTd = $(this).find('td.actionclass');//Refers to TD element
if (ratingTd.text() == "saved block") {
ratingTd.text('changed');
}
});
OR
//get all td with actionclass in table
$("tbody tr td.actionclass").each(function() {
var ratingTdText = $(this).text();
if (ratingTdText == "saved block") {
this.innerHTML = 'changed';
}
});
Your code can be improved using .filter()
//get all td with actionclass in table
$("tbody tr td.actionclass").filter(function() {
return $(this).text() == "saved block";
}).text('changed');
this.innerHTML = 'changed';
Should be
ratingTdText.innerHTML = 'changed';
You shouldn't use this
inside because it is pointing to row
not your td
本文标签: javascriptjQuery find td with class name and change the text based on valueStack Overflow
版权声明:本文标题:javascript - jQuery find td with class name and change the text based on value - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743784676a2538466.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论