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.
私は自分のアプリケーションで Struts2 を多用しています。autocorrectや などの HTML5 属性を追加したいと思いますtype="email"。HTML5 プラグインが表示されません。<s:textfield..>たとえば、タグへの標準的な方法はありますか?
autocorrect
type="email"
<s:textfield..>
HTML5タグに属性を直接追加できますtextfield。pattern、minおよびで正常に完了しましたmax。これらは HTML で正しくレンダリングされます。
HTML5
textfield
pattern
min
max
<s:textfield type="number" name="..." value="%{...}" pattern="[0-9]+" min="40" max="700" />