Jquery mobile:点击更改主题

Kev*_*ark 11 mobile jquery themes

我有一个主题a的基本列表.我试图找到一种方法来单击按钮时更改主题.尝试$('a li').attr('data-theme','a');结合列表刷新没有运气.那里有成功吗?

Nea*_*eal 0

$('a li').data('theme', 'a'); 
                          //<-- use the data() function to change data attributes
Run Code Online (Sandbox Code Playgroud)