0

私が必要とするほとんどのことを行うJS-Jqueryファイルを見つけました。チェックボックスをクリックすると、php 関数が呼び出されます。ここで、別の php 関数を呼び出す別のチェックボックスを追加したいと思います。

だから私は関数をコピーしようとしました。値を変更しましたが、うまくいきませんでした。

間違いは 1 ~ 2 秒でわかると思います。JS-Fiddleをご覧いただきありがとうございます。

この部分をコピーしたいと思います。また、JS-Fiddle での試行も参照してください。

$('input[name="ive-read-this"]').change(function (evt) {
    alert("markiere als gelesen.");

    // We can retrieve the ID of this post from the <article>'s ID. 
    // This will be required
    // so that we can mark that the user has read this particular post and 
    // we can hide it.
    var sArticleId, iPostId;

    // Get the article ID and split it - the second index is always 
    // the post ID in twentyeleven
    sArticleId = $("article").attr('id');
    iPostId = parseInt(sArticleId.split('-')[1]);

    // Initial the request to mark this this particular post as read
    $.post(ajaxurl, {        
        action:  'mark_as_read',
        post_id: iPostId      
    }
4

1 に答える 1

0

これも追加するのを忘れました:

add_action( 'wp_ajax_mark_as_unread', array( &$this, 'mark_as_unread' ) );

それで解決!よろしく

于 2012-11-12T08:34:57.117 に答える