0

脚本

<SCRIPT TYPE="text/javascript">
  <!--
    function popup(mylink, windowname)
    {
      if (! window.focus)return true;
        var href;
        if (typeof(mylink) == 'string')
          href=mylink;
        else
         href=acc_like;
      window.open(href, windowname, 'width=400,height=200,scrollbars=yes');
      return false;
    }
  //-->
</SCRIPT>

HTML

<BODY onLoad="popup('autopopup.html', 'ad')">

ポップアップウィンドウが表示されますが、ユーザーがウィンドウの外をクリックしたときに最小化したくありません。

4

1 に答える 1

1

私の意見では、jquery ダイアログを使用して必要なものを取得する必要があります。以下のサンプル ( jsFiddleで試してください):

<!DOCTYPE html>

<html>
<head>
    <link rel="stylesheet" href="http://code.jquery.com/ui/1.10.2/themes/smoothness/jquery-ui.css" />

    <script src="http://code.jquery.com/jquery-1.9.1.js"></script>  
    <script src="http://code.jquery.com/ui/1.10.2/jquery-ui.js"></script>
    <script type="text/javascript">
        $(document).ready(function () {
            $( "#dialog-form" ).dialog({
                modal: true <!-- is background page responsive or not --> 
            });
        });
    </script>
</head>
<body>      
    Background information
    <div id="dialog-form" title="Hello">Basic information</div> 
</body>
</html>
于 2013-06-29T10:48:10.830 に答える