0
我不知道如何獲得div contenteditable中的第一個鏈接(文本類型)。在我的事業部,我的價值是:獲取Div中contenteditable的第一個鏈接用Javascript
<div id="content" contenteditable="true" value="http://google.com and other string but i only get the link"></div>
而第二個問題,當值http://google.com http://yahoo.com
我想只得到第一個鏈接http://google.com
。
我使用jQuery與key contenteditable中的關鍵事件。希望你能幫助我,謝謝!
更新我的代碼:
$(document).ready(function()
{
$("#content").keyup(function(){
var link = $("content").text();
console.log(link);
});
}
和HTML
<div id="content" contenteditable="true"></div>
你可以在Jsfiddle中做一個演示,它會更詳細地描述它。 – Manwal
顯然你有一些代碼,請顯示它的相關部分。 – Teemu
是的,對不起,我會更新我的問題 –