次のDOMツリーを持つコードがあります。
_<div id="blogPagination">
<div class="pagination">
<ul>
<li>
<a href="/2" >1</a>
</li>
<li>
<a href="/3" >2</a>
</li>
</ul>
</div>
</div>
_
タグのhrefに到達しようとしています。私が試したもので到達することはできません。
JQueryでそれを実現する最良の方法は何ですか?
私は試した:
console.log($('#blogPagination div ul > li a ').attr("href"));
console.log($('#blogPagination > a ').attr("href"));
$('#blogPagination').children('a')
console.log($('#blogPagination div ul li a').attr("href"));
運がなければ..
ありがとう
編集:
Nbrooksの答えの後、ここで私がこれまで試したことがあります:
_function bindPagination() {
console.log("bind");
$(function() {
var links = $("#blogPagination ul a").map(function(e) {
e.preventDefault();
return this.href;
}).get();
console.log(links);
});
_
編集2:
シファロの答えを考慮して、私も試しました:
_$('#blogPagination').find('a').each(function(e) {
e.preventDefault();
console.log($(this).attr('href'));
});
_
運がなければ。
編集3:私はこの機能に関する詳細を提供したいと思います。
このページネーションをロードするために、Ajaxとハンドルバーをドキュメント準備関数にラップしています:
_$(document).ready(function(){
// Get the customer service stats
var Content = {
init: function() {
/* this.getHomePosts(); */
this.getBlogPosts();
},
getBlogPosts: function(offset) {
if(offset == undefined){
offset = 0;
}
// GET the events with JSON
$.ajax({
type: "POST",
data: {},
url: site_url+"/main/blog/"+offset,
dataType: "json",
success: function(results) {
posts = results["posts"].map(function (blogContent) {
if( blogContent.picture != '' ) {
return {
Title: blogContent.title ,
Picture: Content.urlPostPic + blogContent.picture ,
Video: '' ,
Text: blogContent.text ,
Datetime: blogContent.datetime ,
}
} else {
return {
Title: blogContent.title ,
Picture: '' ,
Video: blogContent.video ,
Text: blogContent.text ,
Datetime: blogContent.datetime ,
}
}
});
pagination = {pagination: results["pagination"]};
var template = Handlebars.compile( $('#templateBlog').html() );
$('#blogPosts').append( template(posts) );
var template = Handlebars.compile( $('#templatePagi').html() );
$('#blogPagination').append( template(pagination) );
// Here we call bindPagination <===
bindPagination();
}
});
},
};
Content.init();
_
Get BlogPosts関数で、この関数となるBindPaginationを呼び出し、デフォルトの動作を防ぎ、オフセットに応じてコンテンツを呼び出すことを確認できます(ページネーションシステム)
_function bindPagination() {
console.log("bind");
var links = $("#blogPagination ul a").map(function(e) {
e.preventDefault();
return this.href;
}).get();
console.log(links);
$('#blogPagination').find('a').each(function(e) {
console.log("clicked !");
e.preventDefault();
console.log($(this).attr('href'));
// var attr = this.attr();
// var id = attr.replace("/","");
// $('#blogPosts').empty();
// $('#blogPagination').empty();
// Content.getBlogPosts(id);
});
}
});
_
最後 });ドキュメントの終わりの準備をします。
$('#blogPagination').find('a').attr('href');
これは、指定された領域内のすべてのa
要素を見つけ、それらのhref
を取得します。すでにjQueryとすべての優れたものがセットアップされていると仮定します。
複数のa
要素がある場合、次のようなことができます。
$('#blogPagination').find('a').each(function() {
console.log($(this).attr('href'));
});
これにより、そのhref
内の各a
の各div
が出力されます。
リンクでページが変更されないようにする必要がある場合は、a
要素にクリックハンドラーを追加する必要があります。
$('#blogPagination').on('click', 'a', function(e) {
e.preventDefault();
console.log($(this).attr('href'));
});
これにより、ユーザーはリンクに移動できなくなり、クリックするとリンクのhref
が取得されます。
これは、あなたの望むことですか?
おそらく探している関数は map
です。これにより、指定されたjQueryコレクションを取得し、各オブジェクトの特定のプロパティを取得して、結果のコレクション内の要素を作成することで変換できます。
配列内のすべてのhrefを収集するには:
$(function() {
var links = $("#blogPagination ul a").map(function() {
return this.href;
}).get();
console.log(links);
});
注:子セレクター (el1 > el2
)は、el2
がel1
の直接の子孫である場合にのみ機能します。したがって、少なくとも1つの例は、DOMツリーと一致しなかったため失敗していました。ただし、console.log($('#blogPagination div ul > li a ').attr("href"));
は、DOM対応ハンドラ$(function() { ... });
でラップした場合、最初のアンカータグ(のみ)のhrefを見つけるために機能します。
children
メソッドは似ていますが、直接の子孫(子)のみを検索し、孫などは検索しません。all特定の要素のDOMツリーの子孫、代わりに find
を使用します。
コンソールを確認してください-jQueryが機能しない原因となっている競合またはjavascriptエラーのいずれかがあると思われます。
あなたの声明は正しく、必要な要素を選択する必要があります。