0
試圖提取表格的第二個td(它是一個數字),即值爲。數字值動態變化。jQuery的Preg_match_all中的提取號碼
jQuery('.content').append('<tr><td>Volume1</td><td>56</td><td>123</td></tr>');
jQuery('.content').append('<tr><td>Volume2</td><td>235</td><td>789</td></tr>');
在PHP中我有這樣的:
if(preg_match_all("/jQuery\(\'.content\'\).append\((\'<tr><td>Volume2</td><td>(.*?)\')\);/", $result))
當然這是行不通的,因爲我不知道如何在html標籤使用正則表達式。請幫助
編輯: 該解決方案必須在PHP中,因爲jQuery從另一個服務器使用curl php接收。
$ result是從哪裏來的,爲什麼它包含jQuery代碼? – Barmar 2013-04-06 10:05:27
所以......你想要所有的數字(即56,123,235,789)?或者235在哪裏? – Jon 2013-04-06 10:05:53
只有號碼235 – Rev5 2013-04-06 10:12:33