欢迎光临小站,愿能为您提供帮助与启发,热爱分享、享受分享、乐于分享,让我们携手共同进步。
初始化页面赋值,如编辑页:
$(document).ready(function(){
var ue = UE.getEditor('editor');
var proinfo=$("#divdata").html();// 或text()
ue.ready(function() {//编辑器初始化完成再赋值
ue.setContent(proinfo); //赋值给UEditor
});
});
注意
divdata是隐藏的容器,这样取出来的值就不会有被转义的情况了。
提交到后台,如添加保存、修改保存交互:
可以给script设置对应的name,该name即为后台接收的对应属性。
前台设置:
<form action="" method="post">
<script type="text/plain" id="editor" name="myContent">
</script>
<input type="submit" name="submit" value="提交">
</form>
后台设置:
//PHP获取:
$_POST["myContent"]
//JSP获取:
request.getParameter("myContent");
//ASP获取:
request("myContent");
//NET获取:
context.Request.Form["myContent"];