如何在变量中找到多个类? jQuery的

时间:2016-10-08 22:07:29

标签: javascript jquery

我这样做的不满意是:

    var myForm = $("#my-form");

    var myElements = myForm.find(".first-class .second-class");

我做错了什么?

1 个答案:

答案 0 :(得分:1)

由于元素位于,元素内,因此您可以找到以逗号var myElements = myForm.find(".first-class, .second-class"); 分隔的元素。样本:

ResponseEntity<Response> n2 = null;
n2 = n.postForEntity(mainUrl,u, Response.class);