我有一個需求,我需要extract
1st href
從string
。從字符串中提取錨標記href javascript/jquery
比方說,我有一個字符串是這樣的:
var LinkString="Google Link Is:<a href='www.Google.com' target='_blank' style='text-decoration:none; color:#000000;'>URL</a>";
現在我需要find all the anchor tags
從string
和extract the first anchor tag's href
。
我從here開始關注此示例,並試圖從字符串中找到錨標記。
但我無法獲得第一個元素的href。
var LinkString="Google Link Is:<a href='www.Google.com' target='_blank' style='text-decoration:none; color:#000000;'>URL</a>";
var output = LinkString.split(/(?=<a)/)[1];
我也試着從output anchor tag
creating a DOM element
但無法從here
我的要求,按照程序得到確切的href是得到Google.com
作爲最終的輸出。
任何人都可以幫助我獲得href嗎?
謝謝你們。想不到這樣:) – RealSteel
不客氣@RealSteel。 – Jai