为表单选择jquery插件 - 让它在最基本的工作中运行的问题

时间:2012-08-21 18:12:58

标签: jquery jquery-chosen

对于我的生活,我无法弄清楚为什么这不起作用。请参考jsfiddle: http://jsfiddle.net/4YEU2/

以下是文档和示例:http://harvesthq.github.com/chosen/

有什么想法吗?感谢。

1 个答案:

答案 0 :(得分:4)

你错过了$ !!!

$(document).ready(function() {
    **$**(".chzn-select").chosen(); // Missing $ at the beginning of the line in your jsfiddle
});​