現在、次のコードを使用しています。
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オブジェクトに挿入するにはどうすればよいですか?
どんな助けでも大歓迎..