美好的一天,我試圖用ckeditor
來製作文章內容。這是我輸入的一個例子。是否可以使用jQuery或JavaScript從文本中提取圖像?
<p>I have two images <img alt="" src="http://localhost:84/lf//assets/images/commingsoon.png" style="height:225px; width:225px" /> and this <img alt="" src="http://localhost:84/lf//assets/images/article2.jpg" style="height:91px; width:122px" /></p>
正如你可以看到有兩個圖像,我想第一個圖像作爲我的縮略圖。現在,我只想提取它。
從提取的結果是這樣的
http://localhost:84/lf//assets/images/commingsoon.png
var myString = '<p>I have two images <img alt="" src="http://localhost:84/lf//assets/images/commingsoon.png" style="height:225px; width:225px" /> and this <img alt="" src="http://localhost:84/lf//assets/images/article2.jpg" style="height:91px; width:122px" /></p>';
var result = (someprosess)
您是否嘗試過這個$(IMG).attr( 'SRC'); –
欲瞭解更多信息,請首先設置一個'img'變量。 'var img = $(「img」)[0]'會抓住第一張圖片,'[1]'會抓住第二張圖片。然後你可以做'var imgSrc = $(img).attr(「src」)'。 – Naltroc