大家好,我在Firefox和IE上遇到了一些奇怪的问题。在此之前我没有遇到过这样的问题所以请帮助。我制作了一个自定义图像浏览器来使用ckeditor。浏览器(弹出窗口)窗口按预期打开,但是当我尝试返回fileUrl或运行任何类型的javascript时,在Firefox和IE的情况下没有任何反应。铬的一切都很好。
浏览器页面代码:
<?php
$path = "./public/user_images/demo_user/";
if(is_dir($path) == true){
$list = scandir($path);
if(count($list) >= 1){
foreach ($list as $key=>$value) {
if(is_file($path.$value)){
$file = base_url($path.$value);
echo <<<start
<button class="btn_browser_img">
<img src="$file" class='browser_img'><img>
</button>
start;
}
}
}
}else{
echo "Oops! Wrong folder...";
}
?>
后台Javascript:
$(".browser_img").click(
function(){
alert(this.getAttribute('src'));
fileUrl = this.getAttribute('src');
sendFileUrl(fileUrl);
}
);
function sendFileUrl(fileUrl){
window.opener.CKEDITOR.tools.callFunction( funcNum, fileUrl );
window.close();
}
答案 0 :(得分:1)
this.getAttribute(...)
将无效,因为它对应于包装器jQuery对象。
请尝试this[0].getAttribute(...)
jQuery将实际对象存储在第0个位置,因此this[0]
将为您提供DOM对象。