jQuery UI .button错误:htmlfile:对方法或属性访问的意外调用

时间:2012-03-27 22:10:28

标签: javascript jquery asp.net-mvc-3 jquery-ui

我在之前运行的asp.net MVC视图中有以下脚本:

   $('img[id^="amenity_"]').each(function() {
            $(this).addClass("poi_search_button").button(
                {
                    label : "test",
                    text: false
                }).click(function () {
                   alert("button clicked");
            });
        });

现在,同样的代码失败了,具体来说,jQuery-UI函数.button失败并出现以下错误。

  

htmlfile:对方法或属性访问的意外调用。

任何想法我为什么会收到此错误?

0 个答案:

没有答案