0

嗨,我有一个非常简单的小提琴来了解如何使用 jqueryui 可选:

http://jsfiddle.net/hvqz7/

但是它看起来不起作用。有谁知道它有什么问题?

4

3 回答 3

3

Your last line in the CSS should be:

#container .ui-selected { background: #F39814; color: white; }

Working fiddle:

http://jsfiddle.net/U8XsX/

于 2012-09-13T23:13:38.967 回答
2

Your CSS is wrong.

Change this:

#selectable .ui-selected { background: #F39814; color: white; }

To this:

#container .ui-selected { background: #F39814; color: white; }

DEMO

于 2012-09-13T23:14:02.880 回答
0
于 2012-09-13T23:13:26.590 回答