At the moment I save data when changes are made on the page using ordinary PHP but of course it makes the page reload every time which resets everything. I really need to do it without page reload. I've heard its possible to do with Ajax and JQuery. I would much prefer Jquery answers rather than Javascript.
2条回答 默认 最新
- douwudie8060 2015-07-09 07:29关注
for example you have this form
<input type="text" name="name" class="abc" id="test" placeholder="Name"> <a href="#" class="PopUpSendBtn" id="sendinfo">Send</a>
then write Script
<script> $(document).ready(function() { // invoke event on clicking send button $("#sendinfo").on("click", function(evt) { // get value of input field var userName = $('#test').val(); jQuery.ajax({ url: filename.php, type:'POST', async: false, data:{'userName':userName}, success: function(output_string){ // alert(output_string); if(output_string == 1){ // do someting } else { // do someting } } , error: function(object, status, response) { alert(response); } }); }); }); </script>
your php file(filename.php) get data using post request
$data = $_POST['userName']; // query to store data in db // after saving data successfully in db your can send back a success message //in json or any other format (in my case i am using json) $data['success'] = TRUE; echo json_encode($data);
Don't forget to include jquery script.
This is the basic idea how to send data using ajax. You can modify it according to your requirements.
本回答被题主选为最佳回答 , 对您是否有帮助呢?解决 无用评论 打赏 举报
悬赏问题
- ¥15 soildworks装配体的尺寸问题
- ¥100 有偿寻云闪付SDK转URL技术
- ¥30 基于信创PC发布的QT应用如何跨用户启动后输入中文
- ¥20 非root手机,如何精准控制手机流量消耗的大小,如20M
- ¥15 远程安装一下vasp
- ¥15 自己做的代码上传图片时,报错
- ¥15 Lingo线性规划模型怎么搭建
- ¥15 关于#python#的问题,请各位专家解答!区间型正向化
- ¥15 unity从3D升级到urp管线,打包ab包后,材质全部变紫色
- ¥50 comsol温度场仿真无法模拟微米级激光光斑