我有像
这样的HTML <div class="test" id="12345"></div>
使用jquery,如何使用类名获取id的值?
答案 0 :(得分:1)
试试这个:
try {
JSONObject root = new JSONObject();
JSONArray wrap = new JSONArray();
for (int i = 0; i < 2; i++) {
JSONObject wrapObj = new JSONObject();
wrapObj.put("Count", "10");
wrapObj.put("Property", "Carded");
wrapObj.put("Type", "Cotton");
wrap.put(wrapObj);
}
root.put("Warp", wrap);
} catch (JSONException e) {
e.printStackTrace();
}
答案 1 :(得分:0)
试试这段代码:
var id=$('.test').attr('id');