歡迎來到Linux教程網
Linux教程網
Linux教程網
Linux教程網
您现在的位置: Linux教程網 >> UnixLinux >  >> Linux編程 >> Linux編程

Struts表單標簽帶來的表單元素id的變化

<s:form id="form1" action="student/stu_tosave" theme="simple">

<s:textfield id="stu.name" name="stu.name"/>

</s:form>

用firebug可以觀察到,生成的靜態頁面該標簽如下:

<input id="form1_stu_name" name="stu.name"/>

注意,id起了變化。那麼我們在用js或者jquery取值的時候要多加小心了。

Copyright © Linux教程網 All Rights Reserved