0

如何在展开/折叠按钮而不是(+/-)中包含 jquery.nestable 中的图像?

https://github.com/dbushell/Nestable

4

1 回答 1

0

快速浏览一下演示,使用Firebug来检查 CSS,您可以编辑这部分 CSS 来操作 (+/-) 按钮的外观:

.dd-item > button:before {
    content: '+';
    /* ... */
}

.dd-item > button[data-action="collapse"]:before {
    content: "-";
}
于 2012-12-19T14:19:37.857 回答