私は html page を持っていました。ここには、フェードアウトしてその領域内でのみ単純なモーダル ボックスを表示したいリスト部分がいくつかあります。単純なモーダル ボックスは画面全体に重なって表示されるのではなく、そのリスト部分 (リスト部分に既に div ID が割り当てられている場所) のみに表示され、リストのその部分でモーダルがスクロールされる必要があります。リストのパーツから移動してはなりません。
どんな考えでも大歓迎です。
現在、画面全体がフェードアウトし、モーダルがページ全体でスクロールしています。
ここにコードがあります
<script type="text/javascript">
$(document).ready(function(){ $('#sample').modal({ overlayClose:false, escClose:false, }); } </script>
</HEAD> <BODY>
<div id="sample" style="display:none"> <p>This is some sample data</p> </div>
<table>
<tr > <td >
some headers goes here
</td> </tr>
<tr > <td >
<div id="partdiv">
<table >
<tr> <td>
1. listing items goes here
</td> </tr>
<tr> <td>
2. listing items goes here
</td> </tr>
</div>
</td> </tr>
<tr > <td > some text goes</td> </tr>
</table>
今、画面全体ではなくpartdiv領域にモーダルを表示したいだけです