3

私は小さな WordPress ウィジェットに取り組んでおり、ユーザーが画像をアップロードできる場所に設定しようとしています。これまでのところ、必要なスクリプトはロードされていますが、[メディア ライブラリ イメージ] ボタンをクリックしてもイメージ アップローダーがポップアップしません。

ここに私のjavascriptファイルがあります:

jQuery(document).ready(function($) {

var formfield = null;

$('#upload_image_button').click(function() {
    $('html').addClass('Image');
    formfield = $('#wp-ss-image').attr('name');
    tb_show('', 'media-upload.php?type=image&TB_iframe=true');
    return false;
});


// user inserts file into post. only run custom if user started process using the above process
// window.send_to_editor(html) is how wp would normally handle the received data

window.original_send_to_editor = window.send_to_editor;
window.send_to_editor = function(html){
    var fileurl;

    if (formfield != null) {
        fileurl = $('img',html).attr('src');

        $('#wp-ss-image').val(fileurl);

        tb_remove();

        $('html').removeClass('Image');
        formfield = null;
    } else {
        window.original_send_to_editor(html);
    }
};

});

スクリプトを呼び出す関数は次のとおりです。

add_action('admin_print_scripts-widgets.php', 'wp_ss_image_admin_scripts');

function wp_ss_image_admin_scripts() {
    wp_enqueue_script( 'wp-ss-image-upload', plugins_url( '/WP-Simple-Social/wp-simple-social-image.js' ), array( 'jquery','media-upload','thickbox' ) );
}

add_action('admin_print_styles-widgets.php', 'wp_ss_admin_styles');

function wp_ss_admin_styles() {
    wp_enqueue_style( 'thickbox' );
}

入力ボックスと画像アップロード ボタンを表示するための html は次のとおりです。

<p>Upload Photo: <input id="wp-ss-image" class="widefat" type="text" size="75" name="<?php echo $this->get_field_name( 'image' ); ?>" value="<?php echo esc_url( $image ); ?>" />
        <input id="upload_image_button" type="button" value="Media Library Image" class="button-secondary" />

必要なファイル/スクリプトがすべて読み込まれているため、これは jQuery の問題でしょうか?

他に役立つ追加情報がある場合は、お知らせください。助けてくれてありがとう。

4

1 に答える 1

0

私が見つけた最良の方法は、on() 利益に廃止されたとしても live() メソッドを使用することでした。

働いた

jQuery(document).ready(function($) {
   $("#testage").live("click", function() {
       alert("CLICK!");
      });
});

うまくいきませんでした

jQuery(document).ready(function($) {
      $("#testage").on("click", function() {
       alert("CLICK!");
      });
});

誰かに説明があれば、私は感謝します。

于 2012-12-17T17:38:24.210 に答える