有多個事件日期div。jQuery:拆分字符串並將html附加到拆分元素
HTML:
<div class="event-dates">Aug 28</div>
<div class="event-dates">Aug 28</div>
<div class="event-dates">Aug 28</div>
<div class="event-dates">Aug 28</div>
JQuery的:
jQuery.noConflict();
jQuery(document).ready(function(){
jQuery(".event-dates").each(function() {
jQuery(this).html(jQuery(this).html().replace(/ /g, '<br />'));
});
});
我要像第一附屬輸出image.is有可能拆分字符串,並用HTML加上?
或
任何其他方式來獲得這樣的輸出?在第一圖像顯示
預期結果
它看起來像一些CSS問題http://jsfiddle.net/arunpjohny/8Vx3V/1/ –
了輸出像attched圖像您的代碼,但我想添加HTML代碼到它。 8 25 –