ここにポップアップ ボックスがあり、2 つのものを作りたいと思います。まず、ポップアップウィンドウが表示されているときに、「ポップアップウィンドウの外側の領域」を少し暗く表示したいと思います。次に、その領域をクリックするとポップアップ ウィンドウが閉じます。これが私のスクリプトです:
<script>
$("a").click(function(event)
{
$(this).parent().parent().children(".dialog").dialog(
{
width: 600,
close: function( event, ui )
{
$(this).dialog('destroy');
}
});
});
</script>
と私のhtmlコード:
<div class="content">
<h4>
<a href="#" >AAAA </a>
</h4>
<img src="AAAA.jpg" />
<div class="dialog" title="AAAA" >text
</div>
</div>
jqueryでこの2つのことを行う特定の機能はありますか?