微信小程序版本已经在审核了
各位稍安勿躁。
有时间的可以自己编译着玩玩。在这公开一下代码
\\index.js
Page({
textinput: function (e) {
var content = e.detail.value;
this.setData({
info: this.encodeUnicode(content)
})
},textout:function(e){
var content = e.detail.value;
this.setData({
text1: this.decodeUnicode(content)
})
}, encodeUnicode: function (str) {
var res = [];
for (var i = 0; i < str.length; i++) {
res[i] = ("00" + str.charCodeAt(i).toString(16)).slice(-4).toUpperCase();
}
if(str != '')
return "\\u" + res.join("\\u");
return '';
},// 解码
decodeUnicode: function (str) {
str = str.replace(/\\/g, "%");
//转换中文
str = unescape(str);
//将其他受影响的转换回原来
str = str.replace(/%/g, "\\");
//对网址的链接进行处理
str = str.replace(/\\/g, "");
return str;
}
})
/**index.wxss**/
textarea{
height:160rpx;
border: 3rpx solid rebeccapurple;
position: relative;
}
.botsum{
position: absolute;
top: 130rpx;
font-size: 25rpx;
}
/**index.wxss**/
textarea{
height:160rpx;
border: 3rpx solid rebeccapurple;
position: relative;
}
.botsum{
position: absolute;
top: 130rpx;
font-size: 25rpx;
}
|