将 name 和 id 属性添加到 textarea (struts)
我主要做 CSS 和 php,所以我有点迷失在这里,所以不知道这是否可能是我想要的方式,就是这样:
我有这段代码
<html:textarea rows="10" cols="70" property="thankYouMessage" />
,我希望这个 textarea 呈现一个 id“textareaID” ”以及像“textareaname”这样的名称
我该怎么做?...如果我使用 styleID,页面将不再加载...我需要向该标记应用一些 css,这就是问题所在。
提前致谢!
i mostly do CSS and php so i'm kind'a lost here, so no idea if this is possible the way i want it anyway, this is it:
I have this code
<html:textarea rows="10" cols="70" property="thankYouMessage" />
And i want this textarea to render an id of "textareaID" and a name like "textareaname"
how can i go about this?... if i use styleID, the page just won't load anymore... i need to apply some css to that markup so that's the thing.
Thanks in advance!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
styleId
属性应该有效(也许您拼写错误?区分大小写)IIRC(自 Struts 1 以来很长时间...)HTML 标记中生成的
name
属性将与property
属性 (ref )。因此,在您的示例中,生成的 HTML(您应该检查这一点,查看 HTML 源代码)应该会产生如下结果:通常您不应该依赖
name
来访问元素(例如,在 Javascript 中) ),更喜欢id
styleId
attribute should work (perhaps you mispelled it ? case is sensitive)IIRC (long time since Struts 1...) the generated
name
atribute in the HTML tag will coincide with theproperty
attribute (ref). So in your example the generated HTML (you should check this, looking at the HTML source) should result in something like this:Normally you should'nt rely on
name
for accessing the element (e.g., in Javascript), prefer theid