繁体   English   中英

从弹出模式中选择单选值,而无需重新加载页面

[英]select radio value from popup modal without reloading page

我有一个模式弹出窗口。 如果在该模式上单击,则会弹出一个窗口,并显示单选按钮。 如果单击任何单选按钮并提交该弹出窗口,则选定的单选值应显示在段落标签中,而无需重新加载页面。

我有代码,但是没有用。

我的模式按钮是:(index.php)

<div id="dvPassport1">
            <div class="col-md-6">
        <label>Select Loyalty Membership</label><br>
        <a class="showModal btn btn-primary btn-xs" data-queryid="q11" > View Loyalty Membership</a>
        </div>
        <div class="col-md-6">
        <label>Employee IDs</label>
        <p></p>
        </div>
         </div>

现在,如果单击“查看会员资格”按钮,则会打开一个弹出窗口(下面的代码)(index.php):

<!-- popup modal-->
<div id="id01" class="modal">

 <form class="modal-content animate" action="" method="post" autocomplete="off">
<div class="imgcontainer">
  <span onclick="document.getElementById('id01').style.display='none'" class="close" title="Close Modal">&times;</span>

</div>

<div class="container">
     <div class="modalContent"></div>

</div>
</form>
</div>
<script>
// Get the modal1
jQuery(document).ready(function($){
var modal = $("#id01");
$("a.showModal").on("click", function(){
    modal.fadeIn();
    var id = $(this).attr("data-queryid");
    var modalServiceUrl = "showstate.php?queryid7="+id;
    modal.find(".modalContent").load(modalServiceUrl);
});
});
// When the user clicks anywhere outside of the modal1, close it
window.onclick = function(event) {

if (event.target == modal1) {
    modal1.style.display = "none";
}
}
</script>
<!-- end popup modal -->

脚本是 (index.php)

<script>
$(document).ready(function(){
$('#btnGetValue').click(function() {
    var selValue = $('input[name=rbnNumber]:checked').val(); 
    $('p').html('<br/>Selected Radio Button Value is : <b>' + selValue + '</b>');
});
});

</script>

最重要的是,代码在index.php中

showstate.php是:

<?php
if(isset($_GET['queryid7'])){

$queryid7 = $_GET['queryid7'];
echo"<div align='center' style='height:660px; overflow:auto;'  class='w3l-table-info'><h2>Select your Loyalty membership</h2><table id='table'><thead>
    <tr><th>&nbsp;</th>";
 $query12=mysql_query("select * from loyalty_group ORDER BY id") or die (mysql_error());
while($row12=mysql_fetch_array($query12))
        {
            $group_name1=$row12['group_name'];
            $id11=$row12['id'];
echo"<th><input type='radio' id='rbnNumber' name='rbnNumber' value='$id11'/>".$group_name1.'</th>';

        }
echo"<th>&nbsp;</th></tr></thead><tbody>";
echo"</tbody>
<tr><td>&nbsp;</td><td><br><button type='submit' id='btnGetValue' class='btn btn-primary'>Select</button></td></tr>

 </table></div>";
 ?>

现在,如果有任何单选按钮选择单击选择按钮,则value ='$ id11'的值应显示在段落tag(p) (index.php)中, 而无需重新加载页面(index.php),并且弹出窗口应该关闭。

您的<button type="submit"></button>发送表单并重新加载当前页面,因为未指定<form action=.. 您要在此处使用的是<button type="button"></button>

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM