target =“_ blank”功能从iframe到我的聊天

时间:2012-02-01 09:55:56

标签: php javascript ajax forms iframe

我的链接聊天:http://www.mzzzik.com/chat/

档案js

window.onload = function() {

// only needed becouse of a bug in ie8 rc1, there is no BG-image without any div manipilation by js
Element.show('lay_pw');
Element.hide('lay_pw');
//-------------------------------------------

  $("login").onsubmit = function(){

    if (!Element.visible('lay_pw')) $('pw').value='';
    $('submit_button').disabled = true;

    var myAjaxObj= new Ajax.Request(
                 "./?CheckUserName",
                 {
                  onSuccess: function(ajaxResult) {
                    if (ajaxResult.responseText==1) location.href='./?Chat';
                    else{
                            $('submit_button').disabled = false;
                            if (ajaxResult.responseText=='pw' || ajaxResult.responseText=='pw+invisible') {
                                    Element.show('lay_pw');
                                    if (ajaxResult.responseText=='pw+invisible') Element.show('lay_invisible');
                                    Element.hide('lay_gender');
                                    $("pw").focus();
                            } else {
                                if (ajaxResult.responseText=='blacklist') location.href="./?AfterBlacklistInsertion";
                                else if(!ajaxResult.responseText.empty()) alert(ajaxResult.responseText);
                                else {
                                    $('username').value='';
                                    $('username').focus();

    $('coloruser').value='';
                                    $('coloruser').focus();
                                    }
                                }
                         }
                    },
                  postBody: $("login").serialize()
                 }
        );

    return false;
  }
}

在此页

  <form id="login" action="">

  <input type="hidden" name="4f4940ef9f9874b3066833f786f06b2c" value="1327851439" />
  <input type="text" name="username" id="username" value="" maxlength="100" />


  <input type="submit" id="submit_button" name="go" value="enter" />

  </form>

试试时

 <form id="login" action="" target="_blank">

显示链接 http://www.mzzzik.com/vb/chat/?56f130145f599f85cb0ebefe5e=13288799&username=&pw=&gender=35&go=%D8%A7%D8%B6%D8%BA%D8%B7+%D9%87%D9%86%D8%A7+%D9%84%D9%84%D8%AF%D8%AE%D9%88%D9%84

并显示消息

致命错误:第28行的/home/abdooo/public_html/vb/chat/index.php中找不到“56f130145f599f85afe1d1cb0ebefe5e”类

是这样的链接

http://www.mzzzik.com/chat/?Chat

如何在没有问题的情况下直接访问iframe

可以在聊天5秒后自动提交表单

<script type="text/javascript">
        window.onload=function(){
            window.setTimeout('document.login.submit()', 500)
        }
    </script>

使用版本

ET - Chat v3.x http://www.sedesign.de/de_produkte_chat-v3.html

等待解决方案 谢谢

0 个答案:

没有答案