jQuery で次のコードを実行するための短い表記法はありますか? すべての段落の html コンテンツをログに記録したいと思います。
var array = $('p').get();
$.each(array, function(i, val)
{
console.log(val);
});
コードをチェーンできます:
$('p').each(function (){
console.log($(this).html());
});
Depending on what kind of format you expect you might try:
array.toSTring()
This would result in the array elements separated by ", "
you can literally just do:
console.log($('p').get());
Do you want to get the content of paragraphs?
console.log($('p').text())
あなたが試すことができます
console.log(array.join(''))
これを試して
$.each(($('p').get()), function(i, val)
{
console.log(val);
});
map() を試す
var pArray=$('p').map(function() {
return this.id;
}).get();
console.log(pArray);