使用 weblogic 验证 html 4.01 标签
我需要验证 html 4.01 过渡中的 Web 应用程序。在我的项目中,我正在 sculpts/head.jsp 上添加元标记。问题是我想添加标签,例如:
<meta name="robots" content="follow">
没有封闭标签。文档类型在 sculpture.xml 上定义为 HTML 4.01 Transitional。但是,当删除斜杠时,如果不存在结束标记,WorkShop Framework (Eclipse) 将失败。
我必须在 head.js 中放置元标记吗?
I need to validate a web application in html 4.01 transitional. In my project im working on skeletons/head.jsp to add meta tags. The problem is that i want to add tags like:
<meta name="robots" content="follow">
without the enclosing tag. And the document type is defined on skeleton.xml as HTML 4.01 Transitional. But when erase the slash the WorkShop Framework (Eclipse) fails if no exist ending tag.
It's the head.js where I have to put the meta tags?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我对WebLogic不熟悉,但是当你说“程序失败”时,你的意思是你的网站停止工作了吗?或者生成的 HTML 页面无法验证?
I’m not familiar with WebLogic, but when you say “the program fails”, do you mean your website stops working? Or the resulting HTML page doesn’t validate?