我正在尝试在不刷新的情况下向数据库添加注解。我设法把数据输入数据库,但不知怎的我把它弄坏了。我学了几本教程,现在我想我在什么地方搞混了。可能是小东西。
我想是jquery搞砸了。
所以。。。mysql数据库很简单-注解id,标题,正文
html格式
<form class="comment-form" action="php/addcomment.php" method="post">
<div class="form-group">
<h2>Add Comment</h2>
<label for="comment_title">Title</label>
<input type="text" id="comment_title" name="comment_title" class="form-control" value="">
</div><!--/formgroup-->
<div class="form-group">
<label for="comment_body">Body</label>
<textarea name="comment_body" id="comment_body" class="form-control" rows="8" cols="40"></textarea>
</div><!--/formgroup-->
<button type="button" class="btn btn-primary pull-right" id="comment-btn">Submit</button>
</form><!--/form-->
添加注解.php
include('dbconnect.php');
$con = mysqli_connect($servername,$username,$password,$database);
$title = $_POST['comment_title'];
$body = $_POST['comment_body'];
$sql = "insert into comments (title, body) values ('$title','$body')";
if(mysqli_query($con, $sql)){
echo 'success';
}
jquery ajax
$(document).ready(function() {
//option A
$("#comment-form").submit(function(e){
e.preventDefault(e);
});
});
$('#comment-btn').click(function(){
$.post(
$('#comment_form').attr('action'),
$('#comment_form :input').serializeArray(),
function(result){
$('#result2').html(result);
}
);
});
如果您需要更多的信息,请不要犹豫问,任何帮助将不胜感激!数据库确实连接顺便说一句,我不觉得我必须包括dbconnect.php
谢谢!
表单(html)
暂无答案!
目前还没有任何答案,快来回答吧!