struts加入ID问题

在项目当中为了要适应火狐浏览器。在选择日期控件时必须要加入一个ID,因为在firefor中只认ID,必须是通过ID来获取其中的一个对象,才能把所选择的时间加入到输入框中。我采用的是struts标签来做的(为了刷新时保留其中的值)。
大家可能知道通常的做法是(不采用struts标签那很好喽!):
<input type="text" id="sDate" name="sDate" class="dd_text"/>
那么在struts中用property="sDate"
<html:text property="sDate" styleClass="dd_text"></html:text>它直接翻译
成html为:
<input type="text" name="sDate" class="dd_text"/>里面没有id.
可以采用:
<html:text property="sDate" styleId="sDate" styleClass="dd_text"></html:text>
这样就达到了我们的要求了。这个小知识点希望对大家有所帮助。

你可能感兴趣的:(html,struts,浏览器)