1

私は以下のような構造を持っています:

<div class="panel panel-primary">
     <div class="panel-heading">
          <h3 class="panel-title">Tiger128 (v2)</h3>
     </div>
     <div class="panel-body">
         <input class="form-control" id="tiger128v2" placeholder="String to Hash" type="text">
     </div>
     <div class="panel-footer">
          <a class="btn btn-primary generate-hash" data-hash="tiger128v2">Generate Hash</a>
     </div>
</div>

ユーザーが を押すと、 (セレクター<a>を使用して) jQuery 関数が実行され、リクエストが渡されます。JSONオブジェクトが返されたら、テキストを追加する必要がありますが、IDがないことがわかります。$('.generate-hash')$.getJSONdata-hashtype<div class="panel-body">

私が試したのは、次のようなものです。

$(this).parent().prev('.panel-body').append('Appending some text');
$(this).parent().parent().siblings(".panel-body").append('test');

しかし、私はそれを機能させることができません。助言がありますか?


$('.generate-hash').click(function (e) {
                e.preventDefault();
                var hashtype = $(this).data('hash');
                var string = $(this).closest('.panel').find('input').val();
                console.log('Started hash request for ' + hashtype + ' with a value of ' + string);
                $.getJSON('ajax/hash.php', {
                    hashtype: hashtype,
                    string: string
                })
                .success(function(data) {
                    console.log('success function');
                    if(data.type == 'success'){
                        // Here is where i need to select the parents
                        $(this).parent().parent().siblings(".panel-body").append('test');
                        $(this).parent().prev('.body').append('<div class="alert alert-info"><strong>Generated Hash:</strong> <code>' + data.hash + '</code></div>');
                        console.log('success msg found');
                    }else{
                        $(this).parent().prev('.body').append('<div class="alert alert-' + data.type + '">' + data.msg + '</div>');
                        console.log('error msg found');
                    }
                })
                .fail(function() {
                    $(this).parent().prev('.body').append('<div class="alert alert-error"><strong>Error:</strong> We could not generate the hash for some reason. The details are below:</div>');
                    console.log('unable to find hash.php or other error');
                });
            });
4

5 に答える 5

3

メソッドを使用できます.prev()

$(this).parent().prev('.body').append('Something');

または.closest()方法:

$(this).closest('.box').find('.body').append('Something');

編集:

thisDeferred オブジェクトのハンドラーthisがクリックされた要素を参照しないというコンテキスト内で、オブジェクトをキャッシュする必要があります。また.success()、次のように置き換え.done()ます。

$('.generate-hash').click(function (e) {
    // ...
    var $this = $(this);
    $.getJSON('ajax/hash.php', {
        hashtype: hashtype,
        string: string
    })
    .done(function(data) {
        console.log('success function');
        if(data.type == 'success'){
            // Here is where i need to select the parents
            $this.parent().parent().siblings(".panel-body").append('test');
            // ...
    })
    .fail(function() {
        $this.parent()...
    });
});
于 2013-10-08T04:41:26.827 に答える
2

最も近いものを使用

closest() はセレクタに一致する最初の要素を DOM ツリーから選択し、parent()は DOM ツリー内の別の要素の親であるすべての要素を選択します。

$(this).closest('.box').find('.body').append('Something');

最も近い参照

于 2013-10-08T04:40:34.430 に答える