43 lines
1.2 KiB
HTML
43 lines
1.2 KiB
HTML
<!Doctype html>
|
|
<html style="background:none;">
|
|
<head>
|
|
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
|
|
<title>富文本制度录入</title>
|
|
<!--coe css -->
|
|
<link href="../commons/css/awsui.css" rel="stylesheet">
|
|
<!--<link rel="stylesheet" type="text/css" href="../<I18N#COEPATH>/css/public.css">-->
|
|
|
|
<script type="text/javascript" src="../commons/js/jquery/scripts/jquery.js"></script>
|
|
<script type="text/javascript" src="../commons/js/awsui.js"></script>
|
|
<script type="text/javascript" src="../commons/js/jquery/scripts/ui/aws.util.js"></script>
|
|
<script src="../commons/plug-in/ueditor/ueditor.config.js"></script>
|
|
<script src="../commons/plug-in/ueditor/ueditor.all.js"></script>
|
|
<style>
|
|
|
|
</style>
|
|
<script>
|
|
var sid = "<#sid>";
|
|
var ruuid = "<#ruuid>";
|
|
var shapid = "<#shapid>";
|
|
var content = '<#content>';
|
|
$(document).ready(function(){
|
|
var ue= UE.getEditor('container');
|
|
ue.ready(function() {
|
|
ue.setContent(content);
|
|
});
|
|
});
|
|
function save(){
|
|
var html = "";
|
|
var ue= UE.getEditor('container');
|
|
ue.ready(function() {
|
|
html = ue.getContent();
|
|
});
|
|
return html;
|
|
|
|
}
|
|
</script>
|
|
</head>
|
|
<body style="overflow-x:hidden;background:none;">
|
|
<div id="container"></div>
|
|
</body>
|
|
</html> |