2

我的 jquery 移动应用程序中有一个从数据库填充的 html 下拉列表。但是第一项是可选择的,但无法在选择控件中显示。如何做到这一点?

我的代码是

<div data-role="fieldcontain" style="width: 50%">
    <label for="selectmenu22">
        <span style="font-family: times new roman,times; 
font-size: medium;">
            <b>Address Type:</b>
        </span>
     </label>
     <select name="ddlAddressType" id="ddlAddresstype" 
         data-theme="b" data-mini="true" runat="server" required="required">
     </select>
</div>
4

1 回答 1

0

jQuery Mobile 和 asp.net web 表单不能很好地结合在一起。Ajax 加载和 PostBack 模型只是不网格化。您尚未提供可疑的 JavaScript,但请考虑关闭 Ajax 加载。

<form runat="server" data-ajax="false">
   ...
</form>
于 2012-12-28T03:01:23.943 回答