php ajax实现评论功能,ajax在不刷新的情况下实现评论功能

这次给大家带来ajax在不刷新的情况下实现评论功能,ajax不刷新实现评论功能的注意事项有哪些,下面就是实战案例,一起来看一下。

这是留言板的界面,当用户点击提交留言的时候,自动提交到我的留言下面

留言内容中为空,或者为灰色的“没有填写留言内容”都会弹出 请填写留言内容,当用户填写信息的会在右下角显示当前留言的字数。

e53d54c3dfcd839f0fe7bf96a9f0f2dc.png//去掉左右尖括号 并用去掉空格后的字符串替代显示

function replaceBrackets(id) {

var inputValue = $("#" + id).val();

while (inputValue.indexOf("

inputValue = inputValue.replace("

}

while (inputValue.indexOf(">") != -1) {

inputValue = inputValue.replace(">", "]");

}

while (inputValue.indexOf("&") != -1) {

inputValue = inputValue.replace("&", " ");

}

$("#" + id).val(inputValue);

}

function replaceChar(name, char) {

var inputValue = $("#" + name).val();

while (inputValue.indexOf(char) != -1) {

inputValue = inputValue.replace(char, "");

}

return inputValue;

}

$("#txtMessage").blur(function () {

$("#txtMessage").val(replaceChar("txtMessage", "

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值