我正在尝试从作为变量返回部分的字符串中剖析价格
price_html: "<span class="price"><span class="amount">£2,196.10</span></span>"
你知道一个可以解析这个问题的jquery函数吗?
提前致谢。
答案 0 :(得分:7)
创建一个jQuery对象并使用class selector获取类amount
的范围。
<强> Live demo 强>
price_html = $('<span class="price"><span class="amount">£2,196.10</span></span>');
price_html.find(".amount").text()
或单一陈述
<强> Live Demo 强>
txt = $('<span class="price"><span class="amount">£2,196.10</span></span>')
.find(".amount").text()