全部!
我确定我在问一个非常基本的问题,但我花了一整天的时间,就是想不通。
我在标签框内有一张桌子。在表格标题行中,我需要添加一个按钮,该按钮将弹出一个数据输入框。选项卡区域有效,表格显示,按钮也有效。但是当我点击那个按钮时,什么也没有发生。
我以以下教程为例 http://gristmill.github.com/jquery-popbox/example.html
在我的 html 代码中添加了 popbox.js 和 popbox.css 并添加了
$(document).ready(function() {
$("#tabs").tabs();
$('.popbox').popbox();
});
在 html 文件的末尾。
但是,它不会弹出。我向该方法添加了警报,并且确实调用了 popbox 函数,但似乎没有执行绑定。我添加了一些警报,但没有触发警报:
return this.each(function(){
alert("test1");
$(this).css({'width': $(settings['box']).width()}); // Width needs to be set otherwise popbox will not move when window resized.
alert("test2");
$(settings['open'], this).bind('click', methods.open);
alert("test3");
$(settings['open'], this).parent().find(settings['close']).bind('click', methods.close);
});
据我所知,它没有弹出,因为打开和关闭点击没有绑定。但不确定发生了什么。我是 jsp 的新手,一头扎进了 jquery。为新手问题道歉。
谢谢您的帮助!