我目前正在尝试让 bPopup ( http://dinbror.dk/blog/bPopup/ ) 在我的页面上工作。我找到了这个 jsFiddle ( http://jsfiddle.net/24A9b/ ),它显示让脚本工作。使用以下代码: ;(function($) {
// DOM Ready
$(function() {
// Binding a click event
// From jQuery v.1.7.0 use .on() instead of .bind()
$('#my-button').bind('click', function(e) {
// Prevents the default action to be triggered.
e.preventDefault();
// Triggering bPopup when click event is fired
$('#element_to_pop_up').bPopup();
});
});
})(jQuery);
但我想变得更花哨一点。在此页面 ( http://dinbror.dk/bpopup/ ) 上描述了几个自定义元素。问题是我不会编写javascripts 和jQuery,所以我不知道如何向脚本添加过渡。
希望有人可以指导我。
马吕斯