作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
根据documentation for nextText
:
The text to display for the next month link. This attribute is one of the regionalisation attributes. With the standard ThemeRoller styling, this value is replaced by an icon.
那么,禁用此替换的正确方法是什么?
有点像
$(".ui-datepicker-header > .ui-icon").removeClass("ui-icon")
显然不起作用,因为它在实际创建元素之前运行。
最佳答案
您可以覆盖样式而不是尝试删除它们:
.ui-widget-content .ui-icon {
background-image: none;
}
这是一个例子:
2014 年 10 月 9 日 使用较新版本的 jquery、jquery ui 更新示例:
关于jquery-ui - 如何在 jQuery 日期选择器中显示 nextText/prevText?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9885263/
根据documentation for nextText : The text to display for the next month link. This attribute is one of
我是一名优秀的程序员,十分优秀!