IE8 только отправляет с кнопкой, а не отправить? - PullRequest
0 голосов
/ 03 сентября 2010

Итак, это странно, и это работало на меня около месяца назад, прежде чем я сделал кучу обновлений кода. В любом случае, проблема заключается в том, что живой обработчик отправки даже не запускается в IE8, однако, если я запускаю его по нажатию кнопки, он работает. Смотрите ниже:

HTML

        <label>Add Attachment</label>
        <form class="file_upload" method="post" enctype="multipart/form-data" target="upload_target" action="">
            <input name="binary" id="file" size="27" type="file" /><br />
            <br><input type="submit" name="action" value="Upload" /><br />
            <input type="button" class="test" value="test">
            <iframe class="upload_target" name="upload_target" src="" style=""></iframe>
        </form>
        <label>Attachments</label>
        <ul class="upload_output">
        <li class="nofiles">(No Files Added, Yet)</li>
        </ul>

JavaScript:

function file_upload($theform,item_id){
    $theform.attr('ACTION','io.cfm?action=updateitemfile&item_id='+item_id);
    if($theform.find('[type=file]').val().length > 0){
        $('iframe').one('load',function(){
            $livepreview.agenda({
                action:'get',
                id:item_id,
                type:'item',
                callback:function(json){
                    $theform.siblings('.upload_output').append('<li style="display:none" class="file-upload"><a target="blank" href="io.cfm?action=getitemfile&item_file_id='+json[0].files.slice(-1)[0].item_file_id+'">'+json[0].files.slice(-1)[0].file_name+'</a> <a style="color:red" title="Delete file?" href="#deletefile-'+json[0].files.slice(-1)[0].item_file_id+'">[X]</a></li>').children('li').fadeIn();
                    $theform.siblings('.upload_output').find('.nofiles').remove();
                }
            });
            //Resets the file input. The only way to get it cross browser compatible as resetting the val to nothing
            //Doesn't work in IE8. It ignores val('') to reset it.
            $theform.append('<input type="reset" style="display:none">').children('[type=reset]').click().remove();
        });
    }
    else{
        $.alert('No file selected');
        return false;
    }
}
/* FILE UPLOAD EVENTS */
//When they select "upload" in the modal
$('.file_upload').live('submit',function(event){
    alert('hello world');
    file_upload($('.agenda-modal .file_upload'),$('.agenda-modal').attr('data-defaultitemid'));
});
/* This is the code that makes it work..., but i dont want it! it should alert hello world on the submit button! */
$('.test').live('click',function(event){
    $('.file_upload').submit();
});

Ответы [ 2 ]

0 голосов
/ 03 сентября 2010

Это разработано, и совсем не изолировано IE 8. Это всегда было так во всех браузерах.

Событие submit не происходит, если вы вызываете submitметод, только когда вы отправляете форму, используя кнопку отправки.

0 голосов
/ 03 сентября 2010
  1. вместо создания кнопки сброса, эмуляции события щелчка и его уничтожения - почему бы просто не

    $('.file_upload').reset();
    
  2. Вам действительно нужно вживую отправить форму?Если кнопка остается в DOM все время, используйте для нее обычное событие щелчка, например

    $('.test').click(function(){
        $('.file_upload').submit();
    });
    
Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...