我目前正在使用以下代码:
jQuery('#book-a-service').click(function(){
var selectedServices = jQuery('.selected').parent().parent().html();
console.log(selectedServices);
});
并返回:
<td rowspan="3">Brakes</td>
<td class="service-title">BRAKES SET</td>
<td class="service-description"><p>Setting of front and rear brakes for proper functioning (excluding bleeding)</p></td>
<td class="service-price">R <span id="price-brakes-set">R75</span><div id="select-brakes-set" class="select-service selected"></div>
</td>
这就是我想要的,除了我需要一个 JSON 中带有“.selected”类的所有元素的数组。我只是想知道我如何几乎可以以只获取 td 标签的内容的方式解析它和至于“服务价格”只有数值,然后我将如何将这些值插入到 json 对象中?
非常感谢任何帮助..