ajax留言板 是在别人网页上面查看源代码写成的html文件,但是留言功能用不了,求大神帮我看看代码。
表单的源代码,但是用不了,感觉和下面的JS代码接不上<formclass="m-leave-fill"id="comment-form"action="333.html"...
表单的源代码,但是用不了,感觉和下面的JS代码接不上
<form class="m-leave-fill" id="comment-form" action="333.html" method="post">
<input class="fl cm-bd-c" name="Comment[name]" id="Comment_name" type="text" maxlength="99" />
<input class="fr cm-bd-c" name="Arrive[num]" id="Arrive_num" type="text" maxlength="255" />
<input class="fl cm-bd-c" name="Comment[relation]" id="Comment_relation" type="text" maxlength="99" />
<input class="fr cm-bd-c" name="Arrive[mobile]" id="Arrive_mobile" type="text" maxlength="255" />
<textarea class="m-fill-area cm-bd-c" name="Comment[wish]" id="Comment_wish"></textarea>
</section>
<input id="go-comment" class="m-fill-btn cm-bd-c li-row" type="submit" value="确定发送" data-start="100" data-end="0"/>
</form>
这是js代码
<script>
$('#comment-form').submit(function(event) {
$.ajax({
url: '/liuyan/333.html',
type: 'POST',
data: $(this).serialize(),
dataType: 'json',
success: function(json) {
if (json.status === 200) {
$('#comment-form').find("textarea").val('');
$.fn.yiiListView.update("comment-items-list");
alert("发布成功!");
} else {
alert(json.message);
}
}
});
return false;
});
</script> 展开
<form class="m-leave-fill" id="comment-form" action="333.html" method="post">
<input class="fl cm-bd-c" name="Comment[name]" id="Comment_name" type="text" maxlength="99" />
<input class="fr cm-bd-c" name="Arrive[num]" id="Arrive_num" type="text" maxlength="255" />
<input class="fl cm-bd-c" name="Comment[relation]" id="Comment_relation" type="text" maxlength="99" />
<input class="fr cm-bd-c" name="Arrive[mobile]" id="Arrive_mobile" type="text" maxlength="255" />
<textarea class="m-fill-area cm-bd-c" name="Comment[wish]" id="Comment_wish"></textarea>
</section>
<input id="go-comment" class="m-fill-btn cm-bd-c li-row" type="submit" value="确定发送" data-start="100" data-end="0"/>
</form>
这是js代码
<script>
$('#comment-form').submit(function(event) {
$.ajax({
url: '/liuyan/333.html',
type: 'POST',
data: $(this).serialize(),
dataType: 'json',
success: function(json) {
if (json.status === 200) {
$('#comment-form').find("textarea").val('');
$.fn.yiiListView.update("comment-items-list");
alert("发布成功!");
} else {
alert(json.message);
}
}
});
return false;
});
</script> 展开
2个回答
2014-11-19
展开全部
首先你得有个留言板。之后才有基础讨论这个留言本是不是 ajax 的,或者如何改成 ajax 的。
2014-10-31
展开全部
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询