添加輔助功能到FancyBox的FancyApps2close
按鈕會將其變成submit
按鈕的語法是什麼?將FancyBox關閉按鈕更改爲提交按鈕的語法
我需要添加以下內容:
input type="submit"
name="whereto"
value=""
當前的fancybox功能
$(function() {
$(".fancybox_iframe").fancybox({
type: 'iframe',
padding: 0,
scrolling: 'no',
width: 840,
minHeight: 150,
height: 615,
closeBtn: true,
helpers: { overlay: { closeClick: false, opacity: .5} },
afterShow: function() { $("a.fancybox-close").attr("title", null); },
afterClose: function() {
parent.close_field('notice');
parent.closeiframe_redirect('index.php');
}
});
});
'afterShow'是一個回調,而不是一個方法;) – JFK