将 name 和 id 属性添加到 textarea (struts)

发布于 2024-09-04 22:13:15 字数 316 浏览 4 评论 0原文

我主要做 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

暗恋未遂 2024-09-11 22:13:15

styleId 属性应该有效(也许您拼写错误?区分大小写)

<html:textarea styleId="textareaID" property="thankYouMessage" ... />

IIRC(自 Struts 1 以来很长时间...)HTML 标记中生成的 name 属性将与property 属性 (ref )。因此,在您的示例中,生成的 HTML(您应该检查这一点,查看 HTML 源代码)应该会产生如下结果:

<textarea id="textareaID" name="thankYouMessage" ...>

通常您不应该依赖 name 来访问元素(例如,在 Javascript 中) ),更喜欢 id

styleId attribute should work (perhaps you mispelled it ? case is sensitive)

<html:textarea styleId="textareaID" property="thankYouMessage" ... />

IIRC (long time since Struts 1...) the generated name atribute in the HTML tag will coincide with the property attribute (ref). So in your example the generated HTML (you should check this, looking at the HTML source) should result in something like this:

<textarea id="textareaID" name="thankYouMessage" ...>

Normally you should'nt rely on name for accessing the element (e.g., in Javascript), prefer the id

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文