1

http://jsfiddle.net/VtNaU/

「functionCallOnOpen」は正常に動作しているようですが、「functionCallOnClose」(実際に使用したいもの) は動作していないようです。私も .closeDOMWindow click() を試しましたが、それは閉じるボタンがクリックされた場合にのみ呼び出されます - 外側の領域がクリックされた場合ではありません(ウィンドウも閉じます)。プラグインのソース コードは次のとおりです: http://swip.codylindley.com/jquery.DOMWindow.js

<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js"></script> 
<script src="http://swip.codylindley.com/jquery.DOMWindow.js"></script>
<script type="text/javascript">
$(document).ready(function() {
$('#test1').click(function(event) {
    $.openDOMWindow({ 
        functionCallOnOpen: function () { 
            alert("opening");
        },      
        functionCallOnClose: function () { 
            alert("closing");
        },
        height:100, 
        width:200,
        windowSourceID:'#theWindow'
    }); 
});
});
</script>
<button id="test1">Open Window</button>

<div style="display:none;" id="theWindow"> 
<h1>Test</h1>
<button class="closeDOMWindow">Close</button>
</div>
4

1 に答える 1

1

このスクリプトにはいくつかの問題がありますが、jQuery を使用してボタンを閉じる関数を見つけることで、スクリプト内のこれらのパスを回避できます。

http://jsfiddle.net/cybermonk/Zd78c/

幸運を!

于 2012-04-18T18:44:29.870 に答える