我在之前运行的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:对方法或属性访问的意外调用。
任何想法我为什么会收到此错误?