jquery + 数据列表

发布于 2024-07-24 09:07:14 字数 55 浏览 5 评论 0原文

我对 jquery 不熟悉,并且想要获取 datalist 中控件的 ID,以便我可以使用它们。

I am not familiar to jquery, and want to get ID of controls i have in datalist so that i can use them.

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

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

发布评论

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

评论(1

別甾虛僞 2024-07-31 09:07:14

您需要阅读有关选择器的信息,并且可以相应地命名您的 html 标签,

从这里开始阅读:

http://docs .jquery.com/Tutorials:Getting_Started_with_jQuery

然后你可以像这样绑定你的控件......

$(document).ready(function () {

   $('div[class=whateverClass]').each(function (index) {
      $(this).bind('click', {}, function (event) {
           alert('clicked!');
      }
});

You need to read about selectors, and you can name your html tags accordingly,

Start reading here:

http://docs.jquery.com/Tutorials:Getting_Started_with_jQuery

You can then bind your controls like such...

$(document).ready(function () {

   $('div[class=whateverClass]').each(function (index) {
      $(this).bind('click', {}, function (event) {
           alert('clicked!');
      }
});
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文