提取ewebeditor 的图片地址

admin6年前IT技术1647

<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 %>

相关文章

docker的感悟

1.容器是类实例化的对象,镜像是静态的类2.查看正在运行的容器docker ps ,查看所有容器包含停止与暂停的docker ps;3.拉去官方镜像:docker pull 镜像名称4.docker...

windows 激活

windows 激活

Win7查看系统信息:slmgr.vbs -xpr         键入:slmgr.vbs -ipk FJ82H-XT...

掌握了excel宏开发,开心一下

步骤1.保存为支持宏命令的excel格式2.先录制,3.把重复的操作用for to next的语句段写出来案例如下:Sub Macro5() For i = 9 To 10073  ...

php – DOMXpath – 获取一个元素的href属性和文本值[转]

原文https://stackoverflow.com/questions/6820429/domxpath-get-href-attribute-and-text-value-of-an-a-ele...

在Hyper-V 虚拟机环境设置centos 7固定IP

在Hyper-V 虚拟机环境设置centos 7固定IP

Hyper-V 管理器的自动停止操作的选项里,设置"保持虚拟机状态"如下图所示:...

windows下安装、卸载mysql服务

windows下安装、卸载mysql服务2012年03月09日 16:30:20阅读数:52062 将下载下来的mysql解压到指定目录下(如:d:\mysql)安装服务 在命令行输入d:\...

发表评论    

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