Colorbox没有关闭ie并给出错误

时间:2011-07-13 03:26:39

标签: php jquery colorbox

我正在使用颜色框来获取文本框的值。我在文件中有这个功能:

jQuery(document).ready(function(){
        jQuery(".example5").colorbox({              
    onComplete:function(){ document.getElementById('question').value;}
    });
});

其中question是文本框ID名称。

比我有PHP代码检查谁发送问题所以如果数组是空的我只是使用退出退出代码。这是代码:

if($array != ""){$f_array = explode(",", $array);}
else
{
 echo 'You have no one to ask questions.';  
 exit;
}

这段代码给了我两个我无法弄清楚的问题。一个彩色框显示消息“你没有人问问题”。我可以关闭这是Firefox,但它不会在IE中关闭。 其次我在firefox中遇到这个错误:

document.getElementById("question1") is null
[Break On This Error] onComplete:function(){ document.getElementById('question1').value;}

我一直试图解决这个问题,但不能。我真的很感激你的帮助。

0 个答案:

没有答案