操作系统:
windows xp
浏览器版本:
遨游云浏览器 webkit内核下post内容无法取得内容
360安全浏览器的 webkit内核同样的问题
在遨游浏览器的ie内核中可以post内容
360安全浏览器的ie内核也可以post内容
KindEditor版本:
测试 4.1.2
4.1.5
BUG再现步骤:
1.环境windowsxp xampp1.8.0 thinkphp3.0 或
windows2008 iis7.5 php5.2以上 thinkphp3.0
2.前端提交
<link rel="stylesheet" href="public/kindeditor/plugins/code/prettify.css" />
|
|
<script charset="utf-8" src="public/kindeditor/kindeditor.js"></script>
|
|
<script charset="utf-8" src="public/kindeditor/lang/zh_CN.js"></script>
|
|
<script charset="utf-8" src="public/kindeditor/plugins/code/prettify.js"></script>
|
|
<script>
|
|
KindEditor.ready(function(K) {
|
|
var editor1 = K.create('textarea[name="content1"]', {
|
|
cssPath : 'public/kindeditor/plugins/code/prettify.css',
|
|
uploadJson : 'public/kindeditor/php/upload_json.php',
|
|
fileManagerJson : 'public/kindeditor/php/file_manager_json.php',
|
|
allowFileManager : true,
|
|
afterCreate : function() {
|
|
var self = this;
|
|
K.ctrl(document, 13, function() {
|
|
self.sync();
|
|
K('form[name=example]')[0].submit();
|
|
});
|
|
K.ctrl(self.edit.doc, 13, function() {
|
|
self.sync();
|
|
K('form[name=example]')[0].submit();
|
|
});
|
|
}
|
|
});
|
|
prettyPrint();
|
|
});
|
|
</script>
|
<textarea name="content1" style="width:700px;height:200px;visibility:hidden;"></textarea>
3.if (!empty($_POST['content1'])) {
if (get_magic_quotes_gpc()) {
$htmlData = stripslashes($_POST['content1']);
} else {
$htmlData = $_POST['content1'];
}
}
var_dump($htmlData);
htmlData中无内容
期望结果:
有时候会出现这种问题。不知道是kindeditor的问题还是thinkphp的问题。希望能解决这个bug