我有一个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
应该去的地方。