5

Jquery UI の「ボタン」機能を使用して 4 つのボタンがあります。3 動作は問題ありません。4番目は、ホバーされたときに常にjquery uiホバークラス「ui-state-hover」を適用したくないようです。時々そうしますが、ほとんどの場合、「ホバー」クラスのみを適用し(私はfirebugで見ています)、明らかにCSSスタイルと一致しません。何が矛盾を引き起こしているのか、誰にもわかりませんか?

編集: UI ボタン​​と Ajax Uploader の競合だと思います。ここに私が使用しているいくつかのトリミングされたコードがあります。

$('.upload_img').button({
    icons: {
        primary: 'ui-icon-folder-open'
    },
    label: "Browse"
    })





   jQuery('.upload_img').each(function(){

    var button = jQuery(this);
    var ID = jQuery(this).attr('value');
    var container = jQuery(this).parent();

    //prevent the clicks from its default 'form submit' behavior
    $(this).click(function() {
    return false;
    });             

    new AjaxUpload( button, {
        action: ajaxurl,
        name: ID , // File upload name
        data: { // Additional data to send
            action: 'save_function',
            type: 'upload',
            _nonce: '<?php echo $nonce; ?>',
            key: ID },
        onSubmit: function(file , ext){
            this.disable(); // If you want to allow uploading only 1 file at time, you can disable upload button

        },
        onComplete: function(file, response) {
            this.enable(); // re-enable upload button

            if(response == 99){
                //alert(response);
                show_message(5); // failure
                t = setTimeout('fade_message()', 2000);
            }
            // If there was not an error
            else{   

                show_message(4); // success
                t = setTimeout('fade_message()', 2000);

                }
        }
    });




    });
4

1 に答える 1

0

.button再度有効にし.upload_imgたら、を再接続しようとしましたか?

于 2010-11-09T17:15:10.660 に答える