我正在尝试编写一个基本对话框。我希望能够指定一个链接元素,单击该元素将启动一个对话框。
我使用对话框 HTML 中的数据属性指定此行为:
<a id="launch-dialog" href="#"></a>
<div class="dialog" data-behavior="dialog" data-trigger="#launch-dialog">
<!-- dialog html -->
</div>
$(function(){
$("[data-behavior='dialog']").dialog();
});
实际的 jQuery 扩展是我遇到问题的部分。要么'dopen'
事件未在正文上正确触发,要么未正确设置事件绑定。上的点击事件data-trigger
肯定会触发并被收听。任何想法为什么我从来没有看到“打开检测到”日志?
(function($) {
var methods = {
init: function(options) {
if (this.data('trigger')) {
// Add an event listener which causes the dialog to
// open when the correct link is clicked.
$(this.data('trigger')).on('click', function(e) {
e.preventDefault();
// Trigger a global dialog open event which the dialog can subscribe to.
$('body').trigger('dopen');
});
}
},
// Various other methods not shown.
};
$.fn.dialog = function(method) {
// Method handling code not shown...
// Add handlers for custom events triggered on the body element.
$('body').bind('dopen', function(e) {
// This never happns:
console.log("Open detected");
});
};
})(jQuery);