嗨,我有一个非常简单的小提琴来了解如何使用 jqueryui 可选:
但是它看起来不起作用。有谁知道它有什么问题?
Your last line in the CSS should be:
#container .ui-selected { background: #F39814; color: white; }
Working fiddle:
Your CSS is wrong.
Change this:
#selectable .ui-selected { background: #F39814; color: white; }
To this:
#container .ui-selected { background: #F39814; color: white; }