提取ewebeditor 的图片地址

admin5年前IT技术1249

<Script Language=JavaScript>
function doChange(objText, objDrop){
 if (!objDrop) return;
 var str = objText.value;
 var arr = str.split("|");
 objDrop.length=0;
 for (var i=0; i<arr.length; i++){
  objDrop.options[i] = new Option(arr[i], arr[i]);
 }
}
</Script>

 

<% pooi=Trim(Request.Form("pooi"))

%>

<form id="form1" name="form1" method="post" action="index.asp"><textarea name="content" style="display:none"></textarea>'文本编辑器
<IFRAME ID="eWebEditor1" src="SouthidcEditor/ewebeditor.asp?id=content&style=southidc&originalfilename=myText1&savefilename=myText2&savepathfilename=myText3" frameborder="0" scrolling="no" width="600" height="350"></IFRAME>


<br />
<input type=text id=myText3 style="width:200px" onchange="doChange(this,myDrop3)"> <select name="pooi" size=1 id=myDrop3 style="width:350px">
 </select>
<input type="submit" name="Submit" value="提交" />
<input type="reset" name="Submit2" value="重置" />
</form>


<%= pooi %>

相关文章

JS小数运算出现多为小数问题的解决方法

 asfasf Number类型:Number类型是ECMAScript中最常用和最令人关注的类型了;这种类型使用IEEE754格式来表示整数和浮点数值(浮点数值在某些语言中也被成...

搭建apache2.4+php5.6环境

工具下载地址apache2.4 下载地址:http://httpd.apache.org/php5.6 下载地址:http://windows.php.net/download#php-5.6一、安装...

centos7 通过ssh 登入系统慢的解决方法

centos7 通过ssh 登入系统慢的解决方法

前几天更新了centos7 ( 树莓派3b+硬件环境),发现 ssh登入时间很长,还以为sd 卡出现故障。通过排查不是硬件故障。而是由于ssh的配置文件开启了UseDNS功能 。服务器会先根据客户端的...

通过IP获取MAC地址

关键知识点:ARP缓存时间是十分钟;实现的命令是:第一步  ping  ip第二部  arp -a基础解释:在底层的网络通信中,两个节点想要相互通信,必须先要知道源与目标...

php上传路径问题

php图片上传不认"\"C:\Users\Administrator\Desktop\"只认C:/Users/Administrator\Desktop/...

发表评论    

◎欢迎参与讨论,请在这里发表您的看法、交流您的观点。