PHP建站技术分享-从入门到精通PHP建站技术分享-从入门到精通PHP建站技术分享-从入门到精通

QQ:420220301 微信/手机:150-3210-7690
当前位置:首页 > CMS教程 > 讯睿CMS

xunruicms 如何使用ajax表单提交功能

管理员 2024-11-20
讯睿CMS
174

xunruicms 如何使用ajax表单提交功能

在xunruicms程序中,使用ajax表单提交功能的方法如下:


{php extract(dr_get_form_post_value('message'));}
<form action="" method="post" id="inquiryForm">
    {$form}
    <input type="text" name="data[name]" placeholder="Name">
    <input type="text" name="data[email]" placeholder="Email">
    <input type="text" name="data[phone]" placeholder="Phone">
    <textarea name="data[message]" cols="30" rows="10"></textarea>
</form>
<script>
    $(document).ready(function () {
        $('#inquiryForm').submit(function (event) {
            event.preventDefault();
            var formData = $(this).serialize();
            $.ajax({
                type: 'POST',
                url: '{$post_url}',
                data: formData,
                success: function (response) {
                    if (response.code) {
                        alert('提交成功!');
                    } else {
                        alert(response.msg);
                    }
                },
                error: function (xhr, status, error) {
                    alert('系统错误!');
                }
            });
        });
    })
</script>


希望以上内容对你有所帮助!如果还有其他问题,请随时提问。 各类知识收集 拥有多年CMS企业建站经验,对 iCMS, Fastadmin, ClassCMS, LeCMS, PbootCMS, PHPCMS, 易优CMS, YzmCMS, 讯睿CMS, 极致CMS, Wordpress, HkCMS, YznCMS, WellCMS, ThinkCMF, 等各类cms的相互转化,程序开发,网站制作,bug修复,程序杀毒,插件定制都可以提供最佳解决方案。

相关推荐

扫码关注

qrcode

QQ交谈

回顶部