我的 php 脚本中有两个函数,它们位于 QandA2Table.php 中,但它们的按钮位于 previousquestions.php 页面中,因为模式窗口显示该页面的详细信息。
无论如何,我下面有两个按钮,分别是“关闭”按钮和“添加”按钮:
<div id="previouslink">
<button type="button" id="close" onclick="return parent.closewindow();">Close</button>
</div>
<?php
$output = "";
while ($questionrow = mysql_fetch_assoc($questionresult)) {
$output .= "
<table>
<tr>
<td id='addtd'><button type='button' class='add'>Add</button></td>
</tr>";
}
$output .= " </table>";
echo $output;
}
}
?>
我遇到的问题是关闭模式窗口。当我单击“关闭”按钮时,它会关闭模态窗口,这很棒,但是如果我单击“添加”按钮,则它不会关闭模态窗口。为什么是这样?
下面是两个按钮功能:
function closewindow() {
$.modal.close();
return false;
}
$(".add").on("click", function(event) {
console.log("clicked");
var theQuestion = $("td:first-child", $(this).parent()).text();
if ($('.activePlusRow').length > 0) {
$('.activePlusRow').next('.textAreaQuestion').val(theQuestion);
}
parent.closewindow();
return true;
});
下面是iframe:
function plusbutton() {
// Display an external page using an iframe
var src = "previousquestions.php";
$.modal('<iframe src="' + src + '" style="border:0;width:100%;height:100%;">');
return false;
}