【发布时间】:2015-02-03 11:30:54
【问题描述】:
我在动态生成的表格中有以下表格:
文件索引.php
session_start();
...
<table>
<tr>
<td>Name</td>
<td>Band</td>
<td>Indx</td>
<td>Send</td>
</tr>
<tr>
<td>Bruce</td>
<td>Iron Maiden</td>
<td>95</td>
<td>
<form action="remote.php" class="rock" method="POST">
<input class="name" name="name" type="hidden" value="Bruce">
<input class="band" name="band" type="hidden" value="Iron Maiden">
<input class="indx" name="indx" type="hidden" value="95">
<button class ="send" type="submit">SEND<button>
</form>
</td>
</tr>
<tr>
<td>James</td>
<td>Metallica</td>
<td>90</td>
<td>
<form action="remote.php" class="rock" method="POST">
<input class="name" name="name" type="hidden" value="James">
<input class="band" name="band" type="hidden" value="Metallica">
<input class="inx" name="indx" type="hidden" value="90">
<button class ="send" type="submit">SEND<button>
</form>
</td>
</tr>
当我点击发送时,它会将信息发送到 remote.php 上的脚本:
文件remote.php
<?php
session_start();
$name = $_POST['name'];
$band = $_POST['band'];
$indx = $_POST['indx'];
$up = $indx * 2;
$output = '
<div id="rock-modal" class="modal fade in" role="dialog" tabindex="-1" aria-labelledby="myLargeModalLabel" aria-hidden="true">
<div class="modal-dialog modal-lg">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button>
<h4 class="modal-title" id="myModalLabel">
<i class="fa fa-files-o"></i>
Rock Modal
</h4>
</div>
<div class="modal-body">
The band '.$band.' has an up index of '.$up.'!';
</div><!-- /modal-body -->
</div><!-- /modal-content -->
</div><!-- /modal-dialog modal-lg -->
</div><!-- /modal fade in-->';
$_SESSION['output'] = $output;
header('Location: index.php');
然后 index.php 是新加载的,但现在它会打开一个带有 remote.php 输出的模态框:
<table>
...
</table>
if(isset($output){
echo $output;
}
<script type="text/javascript">
// Compare Modal
$('#rock-modal').modal('show');
</script>
但现在我想做同样的事情,但不需要重新加载页面,即使用 jQuery。
我做了一些研究,并在 StackOverflow (How to display dynamical content from a remote file in bootstrap modal using php?) 中用另一种方法提出了一个问题,以获取有关它的更多信息。有了这些有价值的信息,我做了以下事情:
<tr>
<td>Bruce</td>
<td>Iron Maiden</td>
<td>95</td>
<td>
<form action="remote.php" class="rock" method="POST">
<input class="name" name="name" type="hidden" value="James">
<input class="band" name="band" type="hidden" value="Metallica">
<input class="inx" name="indx" type="hidden" value="90">
</form>
<a class="btn btn-info rock-send" data-modal="#rock-modal" data-href="remote.php">OK</a>
</td>
</tr>
$(function() {
$('.rock-send').on('click', function() {
var data = $(this).closest('tr').find('>td:lt(3)'),
modal = $(this).data('modal');
$.post( $(this).data('href'), {
name: data.name.text(),
band: data.band.text(),
indx: data.indx.text(),
}, function( data ) {
$(modal).modal('show');
});
});
});
但不知何故,它不起作用。我不确定 remote.php 是否可以读取发送的变量并将它们返回。我该如何管理它? 这可能是javascript中的问题。我将不胜感激任何帮助! 提前谢谢你。
== 编辑 ==
这里是基于cmets的index.php代码
<html>
<head>
<link href="//maxcdn.bootstrapcdn.com/bootstrap/3.3.1/css/bootstrap.min.css" rel="stylesheet">
</head>
<body>
<table>
<tr>
<td>Bruce</td>
<td>Iron Maiden</td>
<td>95</td>
<td>
<form action="remote.php" class="rock" method="POST">
<input class="name" name="name" type="hidden" value="James">
<input class="band" name="band" type="hidden" value="Metallica">
<input class="inx" name="indx" type="hidden" value="90">
</form>
<a class="btn btn-info rock-send" data-modal="#rock-modal" data-href="remote.php">OK</a>
</td>
</tr>
<tr>
<td>James</td>
<td>Metallica</td>
<td>90</td>
<td>
<form action="remote.php" class="rock" method="POST">
<input class="name" name="name" type="hidden" value="James">
<input class="band" name="band" type="hidden" value="Metallica">
<input class="inx" name="indx" type="hidden" value="90">
</form>
<a class="btn btn-info rock-send" data-modal="#rock-modal" data-href="remote.php">OK</a>
</td>
</tr>
</table>
<script src="https://code.jquery.com/jquery-1.11.1.js"></script>
<script src="//maxcdn.bootstrapcdn.com/bootstrap/3.3.1/js/bootstrap.min.js"></script>
<script>
$(function() {
$('.rock-send').on('click', function() {
var name = $("input[name='name']").val();
var band = $("input[name='band']").val();
var indx = $("input[name='indx']").val();
$.post('remote.php', {
name: name,
band: band,
indx: indx,
}, function( data ) {
$("#rock-modal").html(data);
$("#rock-modal").modal('show');
});
});
});
</script>
</body>
</html>
这里是完整的 remote.php
<?php
$name = $_POST['name'];
$band = $_POST['band'];
$indx = $_POST['indx'];
$up = $indx * 2;
$output = '
<div id="rock-modal" class="modal fade in" role="dialog" tabindex="-1" aria-labelledby="myLargeModalLabel" aria-hidden="true">
<div class="modal-dialog modal-lg">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button>
<h4 class="modal-title" id="myModalLabel">
<i class="fa fa-files-o"></i>
Rock Modal
</h4>
</div>
<div class="modal-body">
The band '.$band.' has an up index of '.$up.'!!!
</div><!-- /modal-body -->
</div><!-- /modal-content -->
</div><!-- /modal-dialog modal-lg -->
</div><!-- /modal fade in-->';
echo $output;
但不幸的是,什么也没发生。 :-\
【问题讨论】:
-
在 remote.php 中禁用标头位置。比使用萤火虫或铬或其他检查 $.post 是否返回的东西。
标签: javascript php jquery ajax twitter-bootstrap