为啥我的代码在渲染时找不到类?

Posted

技术标签:

【中文标题】为啥我的代码在渲染时找不到类?【英文标题】:Why don't my code find a class upon rendering?为什么我的代码在渲染时找不到类? 【发布时间】:2018-09-23 19:54:35 【问题描述】:

我使用过 jquery 数据表。它有分页按钮,在渲染时,我想改变它的颜色。我注意到类名是 paginate_button current。我已经使用 jquery 的 .css 函数在加载时更改它的 css,但是当我像这样提供它时

  $('.paginate_button, current').addClass('pagination-buttons');

它会改变所有导航按钮的背景颜色。

这个找不到类

$('.paginate_button current').addClass('pagination-buttons');

【问题讨论】:

试试$('.paginate_button.current').addClass('pagination-buttons');你需要用.选择器指定类 【参考方案1】:

如果您想定位同时具有 paginate_buttoncurrent 类的元素,请使用点:

$('.paginate_button.current').addClass('pagination-buttons');

.paginate_button, current 选择类为paginate_button 的元素和类似<current> 的元素。

.paginate_button current 选择像 <current> 这样嵌套在类 paginate_button 的元素下的元素。

【讨论】:

以上是关于为啥我的代码在渲染时找不到类?的主要内容,如果未能解决你的问题,请参考以下文章

为啥当代码编译正常并设置类路径时找不到base64类

为啥我的项目在手机中将其作为渐进式 Web 应用程序下载时找不到一些图像?

为啥使用 Origin 标头时找不到路由

扩展抽象测试类时找不到测试类

UnhandledPromiseRejectionWarning:错误:当我尝试运行我的代码时找不到模块'../database/db'

导入我自己的 java 文件时找不到 Pyjnius 类