我有一个论坛允许用户编辑和删除他的评论,我已经定义了一个“编辑”按钮,只需点击一下鼠标就可以调出一个模态,并允许用户使用模态用户为了能够访问他/她以前发过的数据,我写了一个ajax来定位这些字段并在用户点击“编辑”按钮时更新它们,代码完全有意义,但到目前为止功能还没有为了使其更清晰,用户点击,模态降低,无论他/她发布的内容将出现在字段中,并且模态底部有一个“编辑”按钮,负责更改和更新数据。这是模态代码:
<button id="btn-btnedit" class="btn btn-primary " data-toggle="modal" data-target="#myModal<?php echo $list['id']; ?>">
Edit <i class="fa fa-pencil-square-o"></i>
</button>
<!-- Modal -->
<div class="modal fade" id="myModal<?php echo $list['id']; ?>" tabindex="-1" role="dialog" aria-labelledby="myModalLabel" aria-hidden="true">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal"><span aria-hidden="true">×</span><span class="sr-only">Close</span></button>
<h4 class="modal-title" id="myModalLabel">Modal title</h4>
</div>
<div class="modal-body">
<div class="container">
<form style="width: 550px;" action="" method="post" id="signin-form<?php echo $list['id']; ?>" role="form">
<input type="hidden" name="commentID" value="<?php echo $list['id']; ?>">
<div class="from-group">
<label for="title">Title: </label>
<input class="form-control" type="text" name="title" id="txttitle" value="<?php echo $list['title']; ?>" placeholder="Page Title">
</div>
<div class="from-group">
<label for="label">Label: </label>
<input class="form-control" type="text" name="label" id="txtlabel" value="<?php echo $list['label']; ?>" placeholder="Page Label">
</div>
<br>
<div class="from-group">
<label for="body">Body: </label>
<textarea class="form-control editor" name="body" id="txtbody" row="8" placeholder="Page Body"><?php echo $list['body']; ?></textarea>
</div>
<br>
<input type="hidden" name="editted" value="1">
<br>
<br>
<input type="submit" id="btnupdate" value="Edit">
</form>
</div>
</div>
你可以看到我已经为我的“name”属性分配了“editted”,后来用于调用数据库中的查询,sql代码如下:
case 'postupdate';
if(isset($_GET['editted'])){
$title = $_GET['title'];
$label = $_GET['label'];
$body = $_GET['body'];
$action = 'Updated';
$q = "UPDATE posts SET title ='".$title."', label = '".$label."', body = '".$body."' WHERE id = ".$_GET['commentID'];
$r = mysqli_query($dbc, $q);
$message = '<p class="alert alert-success"> Your Post Is Succesfully '.$action.'</p>' ;
}
这是ajax代码片段;
$('#btnupdate').click(function() {
var tempTitle = $('#txttitle').val();
var tempLabel = $('#txtlabel').val();
var tempBody = $('#txtbody').val();
var tempUrl = "index.php?page=postupdate"+"&title="+tempTitle+"&label="+tempLabel+"&body="+tempBody+"&commentID=30&editted=1";
$.get(tempUrl);
});
我认为这部分代码没有任何进展,我错过了一些非常简单的事情,我们非常感谢任何考虑因素:)
答案 0 :(得分:0)
这个(未经测试的代码)可能类似于你应该做的事情:
$('#btnupdate').click(function() {
var tempTitle = $('#txttitle').val();
var tempLabel = $('#txtlabel').val();
var tempBody = $('#txtbody').val();
var tempParams = {"page":"postupdate","title":tempTitle,"label":tempLabel,"body":tempBody,"commentID":30,"editted":1};
$.post("index.php",tempParams,function(data) {
alert(data);
});
});
<强>更新强>
尝试使用ajax而不是查看加载中是否发生错误
$.ajax( {url:"index.php",data:tempParams,type: "POST"} ).done(function() {
alert( "success" );
}).fail(function() {
alert( "error" );
}).always(function() {
alert( "complete" );
});`
<强>更新强>
如果点击处理程序工作则开始测试(只是为了确定!):
$('#btnupdate')。click(function(){alert(“是的,至少按下了按钮”);});
<强>更新强>
如果脚本执行则开始测试:
alert("yes at least the script gets executed");
$('#btnupdate').click(function() { alert("yes at least the button was pressed"); });
如果没有,你必须在某个地方出现javascript错误。 https://webmasters.stackexchange.com/questions/8525/how-to-open-the-javascript-console-in-different-browsers
如果是,您的按钮不会被JQuery捕获(不知道为什么)
无论如何它与ajax或get无关!