function getIndexPic()//取得首选图,唯一格式如:http://www.21cn.com/xxx.jpg
{
var reg = /http/://///S*//(/w+/.[JPG|JPEG|GIF|BMP]{3})/ig;//获取图片
var arr;
var selbox = document.getElementById("indexPic");
var str = document.getElementById("content").value;//文本内容
selbox.options.add( document.createElement("option") );
selbox.options[0].text = "请选择图片";
selbox.options[0].value = "";
var i = 1;
while ( ( arr = reg.exec( str ) ) != null )
{
selbox.options.add( document.createElement("option") );
selbox.options[i].text = arr[ 1 ];
selbox.options[i].value = arr[ 0 ];
i++;
}
//document.getElementById( "indexPic" ).innerHTML = result;
}
{
var reg = /http/://///S*//(/w+/.[JPG|JPEG|GIF|BMP]{3})/ig;//获取图片
var arr;
var selbox = document.getElementById("indexPic");
var str = document.getElementById("content").value;//文本内容
selbox.options.add( document.createElement("option") );
selbox.options[0].text = "请选择图片";
selbox.options[0].value = "";
var i = 1;
while ( ( arr = reg.exec( str ) ) != null )
{
selbox.options.add( document.createElement("option") );
selbox.options[i].text = arr[ 1 ];
selbox.options[i].value = arr[ 0 ];
i++;
}
//document.getElementById( "indexPic" ).innerHTML = result;
}