0

私はクラスのDivを持っています

<div class='navigation five-icons'></div>

その中にhtmlを返すURLをロードしたいのですが、jqueryでそのdivを選択するにはどうすればよいですか、私が試したのは

 $('.navigation .five-icons').load('URL');
 $('.navigation.five-icons').load('http://www.astuffaday.com/shot/menu.php');

しかし、役に立たない。

4

2 に答える 2

0

読み込みについてはわかりませんが、以下のコードを使用して複数のクラスを選択できます

$('.navigation, .five-icons')
于 2013-05-24T10:19:57.497 に答える
0

データを非同期で取得しようとしていますか? または
_$.post()$.get()

$.post('filename.php', {'name1':'value1', 'name2':'value2'}, function(result) {
   alert(result);  // result has the HTML content returned by filename.php
   $('#resultDiv').html(result);  // resultDiv will have its contents

   // Now you need to get only particular div
   // You can use 'find()'

   // Something like this may help  [Have not been tested]
   var data = $('result').find('.navigation .five-icons');
   alert(data);
})

$ .ajax
()
$.post()
$.get()
$.load()
.find()

于 2013-05-24T10:31:04.283 に答える