我需要来自循环女巫的值是 $row->value,然后当我单击 button_click(href) 时,将显示一个 DIV 弹出窗口并要求另一个值是 idnumber。在弹出窗口中,提交按钮将指向 next_page.php
我希望循环 $row->value 和弹出 value=idnumber 中的值都发送到 next_page.php
<div id="show_popup"(hide/show popup)>
<form action="next_page.php" method="GET or POST">
<input name="idnumber" type="text" value="">
<input type="submit" value="button">
</form>
</div>
<?php
foreach($foo as $row){
echo "
<tr>
<td>".$row->value."</td>
<td><a class='button' href='#' onlick='(popup DIV)'>button_click</a></td>
</tr>";
}
?>
这可能吗?
$(function() {
function launch() {
$('#show_popup').lightbox_me({centered: true, onLoad: function() { $('#add-new-popup').find('input:first').focus()}});}
$('.button').click(function(e) {
$("#show_popup").lightbox_me({centered: true, onLoad: function() {
$("#show_popup").find("input:first").focus();}});e.preventDefault();
});
});