在模态 PHP 中提交数据后不想关闭模态
P粉940538947
P粉940538947 2023-09-04 14:35:19
[PHP讨论组]

我想在提交此表单后保持相同的模式

generateBarcode.php:

<form action="savegenarateBarcode.php?id=<?php echo $d1; ?>" method="post">

savegenerateBarcode.php:

<?php
try {
    session_start();
    include('../connect.php');

    $d1 = $_GET['id'];
    $b = $_POST['serialnumber'];
    $sqlm = "select *from product_item where serialnumber='".$b."'";

    $query = $db->prepare($sqlm);
    $user_array = $query ->execute();
}

提交此表单后如何保持 generateBarcode.php(modal) 不变?

P粉940538947
P粉940538947

全部回复(1)
P粉222320176

I think you should use ajax because the form submit method reload the page.

var id = '<?php echo $d1; ?>';
$("#submit").click(function(){
        $.ajax({
            type: 'GET',
            url: "savegenarateBarcode.php",
            data:`id=${id}`
            success:function(data){
             alert(data);
            }
        });
    return false;
    });
热门教程
更多>
最新下载
更多>
网站特效
网站源码
网站素材
前端模板
关于我们 免责申明 举报中心 意见反馈 讲师合作 广告合作 最新更新 English
php中文网:公益在线php培训,帮助PHP学习者快速成长!
关注服务号 技术交流群
PHP中文网订阅号
每天精选资源文章推送
PHP中文网APP
随时随地碎片化学习

Copyright 2014-2025 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号