Jquery,如何从字符串中剖析值

时间:2014-02-19 11:23:52

标签: jquery

我正在尝试从作为变量返回部分的字符串中剖析价格

price_html: "<span class="price"><span class="amount">£2,196.10</span></span>"

你知道一个可以解析这个问题的jquery函数吗?

提前致谢。

1 个答案:

答案 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()