可以通过 JQuery 选择自定义输入属性吗?

发布于 2024-10-20 21:28:26 字数 320 浏览 7 评论 0原文

是否可以首先使用自定义属性,其次使用Jquery来选择它,第三它与大多数浏览器兼容。我认为 IE7 和 IE6 是个大问题。

所以

JQuery

var test = $('#checkit').attr('reference')

有什么想法吗?

奇妙

Is it possible first to use custom attributes, secondly use Jquery to select it and thirdly that it is compatible with most browsers. IE7 and IE6 being the big issue I would imagine.

So

<input id="checkit" type="checkbox" value="12" alt="1286" title="Press this" reference="1469" level="red"/>

JQuery

var test = $('#checkit').attr('reference')

Any ideas?

Marvellous

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

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

发布评论

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

评论(3

迎风吟唱 2024-10-27 21:28:27

这样做应该不会有任何问题,只是文档不会验证(如果您不指定自定义方案:))

更好的方法是,例如,将数据存储在 JSON 格式的变量中,通过元素 id 引用它。

There shouldn't be any problem in doing that, only the document wouldn't validate(if you won't specify your custom scheme :) )

A better way would be, for example, store data in a variable in a JSON format and refecrence it by elements id.

萌酱 2024-10-27 21:28:26

使用 .data() 方法:

http://api.jquery.com/data/

它位于核心,所以它是跨浏览器的。

use the .data() method:

http://api.jquery.com/data/

it's in the core, so it is crossbrowser.

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