$(document).ready( ->
window.open $('[data-auto-popup]').find('a').attr("href"), "popupWindow", "width=600, height=600"
)
这将打开我访问的所有页面上的窗口;但我只想在具有数据属性的页面上弹出:data-auto-popup
。这可能吗?
答案 0 :(得分:1)
如果您希望在根据评论提交表单时打开窗口,请添加一个用于提交该表单的侦听器,然后根据需要处理该表单,然后打开该窗口。例如。
$('#my-form').on('submit', function() {
// Any form handling code
// Open the window
});