我有这个HTML:
<th class="fc-day-header fc-widget-header fc-sat" data-date="2016-10-01">samedi 1 octobre</th>
我想在samedi 1 octobre
之前插入一些内容。
我已经尝试过prepend()但它似乎不起作用;文字消失了。
有任何想法吗?
答案 0 :(得分:2)
您只需添加到已存在的文字
即可$('.fc-day-header.fc-widget-header.fc-sat').text(function(_,txt) {
return 'Some text' + txt;
});
答案 1 :(得分:0)
像yourComponent.innerHtml = "your new text" + yourComponent.innerHtml;