2016-09-30 253 views
0

我有这个网站:如何插入文本之前没有任何标记?

<th class="fc-day-header fc-widget-header fc-sat" data-date="2016-10-01">samedi 1 octobre</th> 

而且我想samedi 1 octobre之前插入一些东西。

我已经试过prepend(),但它似乎不工作;文字消失。

有什么想法吗?

回答

2

只需将它添加到已存在

$('.fc-day-header.fc-widget-header.fc-sat').text(function(_,txt) { 
    return 'Some text' + txt; 
}); 
文本
0

喜欢的东西yourComponent.innerHtml = "your new text" + yourComponent.innerHtml;

相关问题