0

こんにちは私はjqueryuiselectableの使い方を理解するための非常に簡単なフィドルを持っています:

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 に答える