Jquery mobile中用Jquery的append()追加的内容没有Jquery mobile的样式

Jquery Mobile 动态添加块之后, 样式不是JM内定的样式,解决方案如下:

$('#content').append(html).enhanceWithin();//Jquery Mobile 1.4+
$('#content').append(html).trigger('create');//Jquery Mobile 1.4之前
原文地址:https://www.cnblogs.com/lkc9/p/10494891.html