0

http://communitychessclub.com/js/jquery.popupWindow.jsでjqueryスクリプトに基づくモーダルウィンドウをポップアップしたい

私のテストページはhttp://communitychessclub.com/games_new.phpにあります

私はphpを使用してテーブルを生成しており、data-hrefを使用して、テーブルの行全体(タプル)をクリックしてゲームをロードできるようにしています。最新のjqueryをロードして:

<script src="js/jquery.popupWindow.js"></script>
<script>$('.example').popupWindow({centerScreen:1});</script>

しかし、これに基づいて、ポップアップウィンドウは空白になります。

<tr class="example" data-href="games/game1302.php">

この行を修正するにはどうすればよいですか?

<script>$('.example').popupWindow({centerScreen:1});</script>

so that it picks up the url specified as data-href of the <tr> ?
4

1 に答える 1

1
$('.example').each(function(){
   $(this).popupWindow({centerScreen:1, windowURL: $(this).data("href")});
});

編集。ループに入れるので、$(this)有効です。また、に完全なURLが含まれていることに気付いたdata-hrefので、今を含める必要はありませんwindow.location.hostname

于 2012-06-03T07:32:16.587 に答える