2014-10-17 78 views

回答

1

這是一個恥辱,價格沒有很好地定義在HTML元素。

也許你最好的選擇是有點骯髒的正則表達式字符串提取。像下面這樣的東西應該工作:

var matches = aGoldboxdeals[5].content.match(/Deal Price: \$([0-9]+\.[0-9]+)/); 
if (matches){ 
    var dealPrice = matches[1]; 
    // do something with the price here parseFloat etc... 
} else { 
    // couldn't parse the price 
} 

這可能是最好先解析片段jQuery來第一次提取一個更具體的元素,但像上面應該工作。

+0

感謝它的工作 – Nish 2014-10-20 15:02:11