MYSQL のレコードセットで埋められた動的テーブルがあります。各行には、特定の行を削除するための独自の削除ボタン (画像) があります。このボタンには class="button" があります。
削除ボタンがクリックされたときにポップアップを表示するために、JQuery ポップアップ モーダルを使用しています。この JQuery スクリプトでは、クリックされた行の最初の td セルの数値を含む変数を作成しています。これはすべて完璧に機能します。
私が達成しようとしているのは、同じphpページでこの変数を使用することです。ここで私の知識が尽きます。Ajax がこれに対する解決策である例をいくつか読みましたが、この解決策にこれらの例を使用する知識がありません。
JQuery コード:
<script src="../javascript/jquery-1.8.2.js"></script>
<script src="../javascript/jquery.reveal.js"></script>
<script type="text/javascript">
$(document).ready(function() {
$('.button').click(function(e) { // Button which will activate our modal
var value=$(this).closest('tr').children('td:first').text();
alert(value); // this works
$('#modal').reveal({ // The item which will be opened with reveal
animation: 'fade', // fade, fadeAndPop, none
animationspeed: 500, // how fast animtions are
closeonbackgroundclick: false, // if you click background will modal close?
dismissmodalclass: 'close' // the class of a button or element that will close an open modal
});
return false;
});
});
</script>
あまりにも多くのことを試みてきたので、もうロジックがわかりません。誰かがこれで私を助けてくれることを願っています。