0

こんにちは、クリック時のハイパーリンクの画像を次のように変更しようとしています。しかし、選択ボタンの画像はloading.gifに変わりません。私は何を間違っていますか?私はjqueryが初めてです。期待して感謝

 <HTML><HEAD>
    <SCRIPT type=text/javascript src="jquery.js"></SCRIPT>
    </HEAD>
    <BODY>
    <TABLE>
    <TBODY>
    <TR>
    <TD><A id=webservice_submit href="javascript:document.frm_correction.submit()" jQuery1365443220846="2">
        <IMG onmouseover="MM_swapImage('Correction subj','','http://localhost:6868/corrmgr/img/select_up.gif',0)" onmouseout=MM_swapImgRestore() name="Correction Subj" alt="Correction Subj" src="http://localhost:6868/corrmgr/img/select.gif" oSrc="http://localhost:6868/corrmgr/img/select.gif"> 
         </A></TD></TD></TR></TBODY></TABLE>
    <DIV style="DISPLAY: none" id=loading jQuery1365443220846="3"><IMG name="Please wait..." alt="Please wait while the request is being processed..." src="http://localhost:6868/corrmgr/img/bert2.gif"> </DIV>
    <SCRIPT language=javascript>  
        var $loading = $('#loading'); 

        $('#webservice_submit').click(function(){     
            $loading.toggle();    
            if( $loading.is(':visible') ){
                alert("invoking web services");
                $('#image img').attr('src', 'http://localhost:63531/corrmgr/img/loading.gif');
                return ($(this).attr('disabled')) ? false : true;          
            }
        }); 

        $('#loading').hide(); 
    </SCRIPT>
    </BODY></HTML>
4

2 に答える 2

0

以下の画像タグにローダー画像を割り当てたいと思います

<IMG name="Please wait..." alt="Please wait while the request is being processed..." 
src="http://localhost:6868/corrmgr/img/bert2.gif">

私があなたを理解していれば...以下のようにコードを変更してください...

から :

$('#image img').attr('src', 'http://localhost:63531/corrmgr/img/loading.gif');

に :

$("img[name='Please wait...']").attr('src', 'http://localhost:63531/corrmgr/img/loading.gif');
于 2013-04-08T18:15:22.787 に答える