Here is an example on how you could do this:
$(function() {
"use strict";
var url = /[-a-zA-Z0-9@:%_+.~#?&//=]{2,256}.[a-z]{2,4}(/[-a-zA-Z0-9@:%_+.~#?&//=]*)?/gi;
$("#textarea").on("keyup", function( e ) {
var urls, output = "";
if ( e.keyCode !== 8 && e.keyCode !== 9 && e.keyCode !== 13 && e.keyCode !== 32 && e.keyCode !== 46 ) {
// Return is backspace, tab, enter, space or delete was not pressed.
return;
}
while ((urls = url.exec(this.value)) !== null) {
output += urls[0] + ", ";
}
console.log("URLS: " + output.substring(0, output.length - 2));
});
});
Of course you would have to bind other events like .blur()
for it to work properly.
Try the following fiddle and check you console as you type: http://jsfiddle.net/sQVe/mXQrc/1/
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…