脚本属性

发布于 2024-08-31 15:14:11 字数 151 浏览 5 评论 0原文

我需要控制一些脚本元素,这就是为什么我想添加 class 属性来做到这一点。 但是,w3c 说它无效。如果我添加 rel 或 id 属性,会产生一些效果。

我还有其他想法如何访问适当的脚本标签吗?

文档类型:XHTML 1.0 非常

感谢,

I need to control some script elements, that's why I want to add class attribute to do it.
But, w3c says that it's invalid. Some effect, if I add rel or id attribute.

Any other ideas how I can access appropriate script tag?

Doctype: XHTML 1.0 Strict

Thanks,

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

帅的被狗咬 2024-09-07 15:14:12

嗯...好问题。看来他们连身份证都没有。

我想到的唯一想法是将您的识别信息添加到查询字符串中:

<script src="http://www.example.com/scripts/script.js?id=my_id&variable=value">

这非常混乱,但如果有效性是最重要的因素......

另一个想法是将数据存储在 # 部分:

<script src="http://www.example.com/scripts/script.js#id=my_id&variable=value">

但我担心这会带来意想不到的后果。我的假设是浏览器在请求脚本时会删除该部分,但我不确定。

HTML 5 将带来数据:属性。很可能这些在脚本标签中也是合法的。

Hmmm... Good question. It seems they can't even have an ID.

The only idea that comes to mind is to add your identifying info into the query string:

<script src="http://www.example.com/scripts/script.js?id=my_id&variable=value">

it's awfully kludgy but if validity is the most important factor.....

Another idea would be storing the data in the # part:

<script src="http://www.example.com/scripts/script.js#id=my_id&variable=value">

but I would fear unintended consequences with that one. My assumption is browsers will drop the part when requesting scripts but I don't know for sure.

HTML 5 will bring the data: attribute. Chances are those will be legal in script tags, too.

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