集成 jquery-ui 和 jquery 验证

发布于 2024-12-21 04:03:17 字数 108 浏览 0 评论 0原文

我正在使用 jquery ui 控件和 jquery 验证插件。

假设我想在组合框中添加所需的类。

该元素是使用通用代码动态生成的。

在哪里可以添加班级?

I'm using jquery ui controls, and jquery validation plugin.

let's say I want to add a required class on a combobox.

The element is dynamically generated with a generic code.

Where can I add the class ?

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

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

发布评论

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

评论(2

夜空下最亮的亮点 2024-12-28 04:03:17

我只需要选择具有适当班级的下一个兄弟:

$('#someSelect ~ .ui-autocomplete-input').addClass('bla');

I just need to select the next brother with the proper classes:

$('#someSelect ~ .ui-autocomplete-input').addClass('bla');
北恋 2024-12-28 04:03:17

您可以将此 html 添加到您的视图中。或者取出脚本标签并将其添加到该页面的 js 文件中。在下面的例子中,我向组合框中添加了两个类。

这个组合框:

<select id="cbCars">
  <option value="volvo">Volvo</option>
  <option value="saab">Saab</option>
  <option value="mercedes">Mercedes</option>
  <option value="audi">Audi</option>
</select>

这是包裹在 html 脚本标签中的 JQuery:

<script type="text/javascript">
    $(function () {
        $("#cbCars").addClass("ui-state-active ui-corner-top");
    });
</script>

You can add this html to your view. Or take out the script tags and add this to your js file for that page. In the case below I am adding two classes to the combobox.

This combo box:

<select id="cbCars">
  <option value="volvo">Volvo</option>
  <option value="saab">Saab</option>
  <option value="mercedes">Mercedes</option>
  <option value="audi">Audi</option>
</select>

This is the JQuery wrapped in a html script tag:

<script type="text/javascript">
    $(function () {
        $("#cbCars").addClass("ui-state-active ui-corner-top");
    });
</script>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文