Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个下拉列表框,我在其中显示带有 gmt 小时的时区。 现在我想在 Jgrid 中显示这个选项。可能吗?
for(..) { <option value=<%=tzone.getTimeZoneID() %> > <%=tzone.getTimeZoneName() %> </option> }
在 js 文件中,我使用
var timeZone = $("#backDropDownTimezone").val();
因此只显示 id 但我想显示时区名称。
你可以试试这个
var timeZone=$("#backDropDownTimezone").text()