主题: 弹出层上获取焦点不行
作者: 问题, 发布日期: 2013-04-15 17:28:32, 浏览数: 2706
操作系统: w7

浏览器版本: chrome

KindEditor版本: 4.16

BUG再现步骤:
1.<link rel="stylesheet" href="${rc.contextPath }/strain_static/kindeditor-4.1.6/themes/default/default.css" />
<link rel="stylesheet" href="${rc.contextPath }/strain_static/kindeditor-4.1.6/plugins/code/prettify.css" />
<script charset="utf-8" src="${rc.contextPath }/strain_static/kindeditor-4.1.6/kindeditor.js"></script>
<script charset="utf-8" src="${rc.contextPath }/strain_static/kindeditor-4.1.6/lang/zh_CN.js"></script>
<script charset="utf-8" src="${rc.contextPath }/strain_static/kindeditor-4.1.6/plugins/code/prettify.js"></script>

<script>
var editor1;
KindEditor.ready(function(K) {
editor1 = K.create('textarea[name="content"]', {
cssPath : ${rc.contextPath }'/strain_static/kindeditor-4.1.6/plugins/code/prettify.css',
filterMode:true,
items : [
   'source', '|', 'fontname', 'fontsize', '|', 'textcolor', 'bgcolor', 'bold', 'italic', 'underline',
   'removeformat', '/', 'justifyleft', 'justifycenter', 'justifyright', 'insertorderedlist',
   'insertunorderedlist', '|', 'emoticons', 'image', 'link'],
                afterCreate : function() { 
              this.sync(); 
              }, 
              afterBlur:function(){ 
              this.sync(); 
              }      
});
prettyPrint();
});
</script>
<div id="addTopic">
<textarea name="content" cols="10" rows="8"
style="width: 500px; height: 200px;">内容......</textarea>
</div>

<script>
KindEditor.ready(function(K) {
K('#create1').click(function() {
var dialog = K.dialog({
width : 500,
title : '测试窗口',
body :document.getElementById("addTopic"),
closeBtn : {
name : '关闭',
click : function(e) {
dialog.remove();
}
},
yesBtn : {
name : '确定',
click : function(e) {
alert(this.value);
}
},
noBtn : {
name : '取消',
click : function(e) {
dialog.remove();
}
}
});
});
});
</script>
</head>
<body>
<input type="button" id="create1" value="打开弹出框" />
</body>


期望结果:
期望可以获取焦点
作者: Roddy, 发布日期: 2013-04-15 21:48:41
显示弹出框后执行一下KindEditor.create,http://www.kindsoft.net/ke4/examples/jquery-ui.html
回复
作者: Cupid, 发布日期: 2014-08-15 14:35:26
回复Roddy:解决不了,问题依旧存在
回复
作者: Cupid, 发布日期: 2014-08-15 14:57:02
回复Roddy:你给的链接,网址,打开后把IE浏览器,IE7,IE8,IE9,问题依然存在
回复
发表新帖 发表回复