0

javascript関数でポップアップウィンドウを表示したいのですが、以下の条件で - ポップアップはページの中央にある必要があります。-ポップアップが開いたときに親ページにアクセスできません。-IE7以降でも動作します。

ただし、次のコードを試していますが、成功しませんでした。

 window.open('PopUp.aspx', 'popjack',
        'toolbar=no,location=no,directories=no,status=no,menubar=no,resizable=yes,copyhistory=no,scrollbars=no,width=955,height=500');

jQueryで簡単にできますか?ありがとうございます。

4

1 に答える 1

0

jQuery UIドキュメントから

<!doctype html>

<html lang="en">
<head>
  <meta charset="utf-8" />
  <title>jQuery UI Dialog - Basic modal</title>
  <link rel="stylesheet" href="http://code.jquery.com/ui/1.9.2/themes/base/jquery-ui.css" />
  <script src="http://code.jquery.com/jquery-1.8.3.js"></script>
  <script src="/resources/demos/external/jquery.bgiframe-2.1.2.js"></script>
  <script src="http://code.jquery.com/ui/1.9.2/jquery-ui.js"></script>
  <link rel="stylesheet" href="/resources/demos/style.css" />
  <script>
  $(function() {
    $( "#dialog-modal" ).dialog({
      height: 140,
      modal: true
    });
  });
  </script>
</head>
<body>

<div id="dialog-modal" title="Basic modal dialog">
  <p>Adding the modal overlay screen makes the dialog look more prominent because it dims out the page content.</p>
</div>

<p>Sed vel diam id libero <a href="http://example.com">rutrum convallis</a>. Donec aliquet leo vel magna. Phasellus rhoncus faucibus ante. Etiam bibendum, enim faucibus aliquet rhoncus, arcu felis ultricies neque, sit amet auctor elit eros a lectus.</p>


</body>
</html>

ダイアログはウィンドウの中央に開き、モーダルになります (ユーザーはダイアログ以外の要素と対話できません)。

于 2013-01-15T07:35:19.163 に答える