0

得到了这个 ddl,它适用于这个版本的 jQm “http://code.jquery.com/mobile/1.1.0/jquery.mobile-1.1.0.min.js”:但如果我把它改成 1.2。 0 项目从不隐藏。有人见过这个问题吗?

                <asp:DropDownList ID="LanguageDropDownList" OnSelectedIndexChanged="LanguageDropDownList_OnSelectedIndexChanged"
                data-native-menu="false" AutoPostBack="true" runat="server">
            </asp:DropDownList>
4

1 回答 1

0

jQuery Mobile 和 asp.net web 表单基本上不能一起工作。回发模型和 jQuery Mobile 的 ajax 表单加载和导航不兼容。移动到 MVC 或关闭 ajax。

确保在 jQuery Mobile 初始化之前调用此代码。(将它包含在引用 jQuery Mobile 的标记之前。)

<script src="jquery.js"></script>
<script>
    $(document).bind("mobileinit", function() {
      $.mobile.ajaxEnabled = false;
    });
</script>
<script src="jquery-mobile.js"></script>

http://jquerymobile.com/demos/1.2.0/docs/api/globalconfig.html

于 2013-01-03T17:23:18.237 回答