自动获取图片地址到文本框或下拉框中

阅读更多
fckeditor\editor\dialog\fck_image\fck_image.js 修改函数
function SetUrl( url, width, height, alt )
{
if ( sActualBrowser == 'Link' )
{
   GetE('txtLnkUrl').value = url ;
   UpdatePreview() ;
}
else
{
   GetE('txtUrl').value = url ;
   GetE('txtWidth').value = width ? width : '' ;
   GetE('txtHeight').value = height ? height : '' ;

   if ( alt )
    GetE('txtAlt').value = alt;

   UpdatePreview() ;
   UpdateOriginal( true ) ;

   FCKConfig.setUploadImg(url);//修改---
}

window.parent.SetSelectedTab( 'Info' ) ;
}

在 fckeditor\fckconfig.js 最后加上函数

FCKConfig.setUploadImg = function(_res){
    if(!_res) return;
    objDrop=parent.document.getElementById("PicSelect");
    objText=parent.document.getElementById("TextPic");
    var nIndex = objDrop.selectedIndex;
    if(objDrop.options[0].value=="")objDrop.options[0]=null;
    var oLen=objDrop.length;
    if(oLen>0)
    {
         for(var i=0; i 
 
前台输入

                
                    图片:
                
                    
                    
                    
                
            

你可能感兴趣的:(fckeditor)