素早くばかげた jQuery セレクターの質問。
これが機能しない理由: jsFiddle デモ
//config
var ThisTable = $('.ReallyLongSillyTableName');
// Function
$(ThisTable + ' > tbody > tr > td:last-child').each(function() {
$(this).append('Sales Orders: ');
});
しかし、これは機能します: jsFiddle デモ
$('.ReallyLongSillyTableName td:last-child').each(function() {
$(this).append('Some Text');
});
どんな提案でも大歓迎です。