私のphpスクリプトにはQandA2Table.phpに配置された2つの関数がありますが、モーダルウィンドウがそのページの詳細を表示するため、それらのボタンはpreviousquestions.phpページに配置されています。
とにかく、「閉じる」ボタンと「追加」ボタンの下に2つのボタンがあります。
<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;
}
}
?>
私が抱えている問題は、モーダルウィンドウを閉じることです。「閉じる」ボタンをクリックするとモーダルウィンドウが閉じますが、「追加」ボタンをクリックしてもモーダルウィンドウは閉じません。どうしてこれなの?
以下は、2 つのボタン機能です。
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;
}