|
发表于 2020-11-5 22:43:27
|
显示全部楼层
天津市天津市
你把他的函数抄过来就行了.
function chinese_convert(t) {
var e = $("#tool-text").val();
if ("" == e)
return tips_error("请填写要转换的内容!"),
$("#tool-text").focus(),
!1;
if (2e3 < e.length)
return tips_error("输入字符长度不能超过2000!"),
$("#tool-text").focus(),
!1;
var s = $(".btn-success");
s.attr("disabled", "disabled"),
tips_loading(),
$.ajax({
type: "post",
dataType: "json",
data: {
text: e,
type: t
},
url: URL + "ajax",
success: function(t) {
1 == t.status ? (tips_clear(),
$("#tool-result").val(t.data)) : tips_error(t.info),
s.removeAttr("disabled", "disabled")
}
})
}
E2EE做个后台 把接收的文字 转换 ,在返回来 |
|