SimpleModal Confirm Override機能を使用して、ページのロード時にアクティブになるように変更します。誰かが助けてくれますか? SimpleModalデモページのWebサイトへのリンクです。jQuery SimpleModalプラグイン - open onLoad
http://www.ericmmartin.com/projects/simplemodal-demos/
SimpleModal Confirm Override機能を使用して、ページのロード時にアクティブになるように変更します。誰かが助けてくれますか? SimpleModalデモページのWebサイトへのリンクです。jQuery SimpleModalプラグイン - open onLoad
http://www.ericmmartin.com/projects/simplemodal-demos/
オープンconfirm.jsと変更:
jQuery(function ($) {
$('#confirm-dialog input.confirm, #confirm-dialog a.confirm').click(function (e) {
e.preventDefault();
// example of calling the confirm function
// you must use a callback function to perform the "yes" action
confirm("Continue to the SimpleModal Project page?", function() {
window.location.href = 'http://www.ericmmartin.com/projects/simplemodal/';
});
});
});
へ:
jQuery(function ($) {
// example of calling the confirm function
// you must use a callback function to perform the "yes" action
confirm("Continue to the SimpleModal Project page?", function() {
window.location.href = 'http://www.ericmmartin.com/projects/simplemodal/';
});
});
これは、ページのロードのモーダルダイアログを表示していました...
$(document).ready(function() {
$('#basicModalContent').modal();
});
オープンosx.jsと
init: function() {
$("#osx-modal-content").modal({
overlayId: 'osx-overlay',
containerId: 'osx-container',
closeHTML: null,
minHeight: 80,
opacity: 65,
position: ['0',],
overlayClose: true,
onOpen: OSX.open,
onClose: OSX.close
});
},
なるように、次の行(行14におけるコードスタート)
init: function() {
****$("input.osx, a.osx").click(function (e) { << delete this line
e.preventDefault();**** << delete this line
$("#osx-modal-content").modal({
overlayId: 'osx-overlay',
containerId: 'osx-container',
closeHTML: null,
minHeight: 80,
opacity: 65,
position: ['0',],
overlayClose: true,
onOpen: OSX.open,
onClose: OSX.close
});
}); <<< delete this line
},
を除去