0

我使用 struts-2 进行应用程序和创建日期选择器,我使用了“struts-jquery-tags”......它在其他浏览器中工作正常,但在 Internet Explorer 中,它根本没有显示......我的代码去了这里

<%@ taglib prefix="sj" uri="/struts-jquery-tags"%>
<sj:head/>
<sj:datepicker name="dueDate" id="dueDate" displayFormat="mm/dd/yy" label="Due Date" changeMonth="true" changeYear="true" title="Due Date" showButtonPanel="true" maxlength="10" readonly="true" buttonImage="/BPELServiceInvoke/resources/images/calendar_add.png" buttonImageOnly="true" duration="fast"  />
4

1 回答 1

1

这与该插件的浏览器兼容性问题密切相关。

最好的方法是在这里发帖:https ://code.google.com/p/struts2-jquery/wiki/DatePickerTag

同时,只需尝试降级您正在使用的插件版本。我确信旧版本将支持 IE8。

另外,查看正在使用的 jquery 版本的更改日志,它支持 IE8 - https://code.google.com/p/struts2-jquery/wiki/Changelog

于 2013-11-09T03:25:46.270 回答