0

我们在选择菜单上重新应用样式,如下所示:

$('.select').selectmenu();

这很好用.. 但我们也需要在我们的锚标签上这样做。

这些看起来像这样:

<a data-callback="Continue" data-theme="b" data-role="button" name="Continue" data-transition="pop" data-direction="reverse">Continue</a>

我们如何才能让 jQuery mobile 也将样式应用到这些元素?

4

2 回答 2

0

$('#dialogContainer a').button();

这似乎工作正常。

于 2012-05-29T01:15:26.033 回答
0

试试这个

$('.selectButton').button('refresh');

更多信息

http://jquerymobile.com/test/docs/buttons/buttons-methods.html

于 2012-05-29T03:18:02.593 回答