我有一个由 MYSQL 的记录集填充的动态表。每行都有自己的删除按钮(图像)来删除特定的行。这个按钮有一个 class="button"。
当单击删除按钮时,我正在使用 JQuery 弹出模式来获取弹出窗口。在这个 JQuery 脚本中,我正在创建一个变量,其中包含已单击行的第一个 td cel 的数值。这一切都完美无缺。
我想要完成的是在同一个 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>
我一直在尝试太多,以至于我再也看不到逻辑了。我希望有人可以帮助我。