私はdiv
このようなタグを持っています:
<div id="some id here" class="portlet portlet_15 portlet_content_15 new" >some content here</div>
私は次のようにjqueryを使用してid
これを取得できることを理解しています:div
$(this).closest("div").attr("id")
portlet_15
しかし、上記から任意の数を抽出するclass
にはどうすれ15
ばよいですか?
これは、私が現在どこで取得および送信しているのかを示すコードの抜粋id
ですdiv
:
$.ajax({
url: 'some web service,
type: 'POST',
data: { strID:$(that).closest("div").attr("id"), strClass:"need to send the class value too right here, in this case it would be portlet_15" },
error: function(xhr, status, error) {
//some error message;
},
success: function() {
//some success task
}
});
data
上記のコードのどこに行くべきかというメモを含めましたclass
。