操作系统: win7 64位旗舰版
浏览器版本:
google版本 33.0.1750.154 m
KindEditor版本:
BUG再现步骤:
1.google浏览器下asp无法传值
2.
3.
<script>
KindEditor.ready(function(K) {
var content = K.create('textarea[name="piccat_content"]', {
cssPath : 'kindeditor/plugins/code/prettify.css',
uploadJson : 'kindeditor/asp/upload_json.asp',
fileManagerJson : 'kindeditor/asp/file_manager_json.asp',
allowFileManager : true,
afterCreate : function() {
var self = this;
K.ctrl(document, 13, function() {
self.sync();
K('form[name=form1]')[0].submit();
});
K.ctrl(self.edit.doc, 13, function() {
self.sync();
K('form[name=form1]')[0].submit();
});
}
});
prettyPrint();
});
</script>
<textarea id="piccat_content" name="piccat_content" style="width:700px;height:300px;">
</textarea>
取值: piccat_content=trim(replace(request.form("piccat_content"),"'",""))
期望结果:
兼容性