DataTables过滤器输入图像更改

时间:2020-11-10 09:37:26

标签: javascript html jquery css datatables

我正在使用1.10.22版本的dataTables。

我想更改过滤器输入的“ X”图像。

enter image description here

我在CSS文件中找不到任何背景图片或其他任何东西。 这项工作如何进行,我可以在哪里更改?

1 个答案:

答案 0 :(得分:1)

我认为x来自输入搜索字段

/* clears the 'X' from Internet Explorer */
input.hide-clear[type=search]::-ms-clear,
input.hide-clear[type=search]::-ms-reveal {
  display: none;
  width: 0;
  height: 0; 
}

input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-results-button,
input[type="search"]::-webkit-search-results-decoration {
  -webkit-appearance:none;
}