提取ewebeditor 的图片地址

admin6年前IT技术1820

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

相关文章

apache配置SSL以及同一站点多端口配置

 <VirtualHost *:443>  ServerName www.ilikegoodproducts.com DocumentRoot &q...

docker的感悟

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

关于jquery升级至1.8版本之后的兼容问题Uncaught TypeError: $(...).size is not a function

关于jquery升级至1.8版本之后的兼容问题Uncaught TypeError: $(...).size is not a function

之前也遇到过这种问题Uncaught TypeError: $(...).size is not a function  控制台报错如上图,打开Frame.js可以看到里面定义大小...

magento2.3.5 安装与优化过程

 bin/magento setup:install --base-url=https://www.mytinely.com/ \--db-host=localhost --db-name=...

macbook安装window10 之后导致键盘P键失效与声卡没有声音的解决方案.

macbook安装window10 之后导致键盘P键失效与声卡没有声音解决方案:macbook启动的时候,同时按住command+r键,进入恢复模式大概20分钟之后,按键失效的问题就能解决了,如果声卡...

yt-dlp+ffmpeg

1. 安装Python和ffmpegPython:安装时把pip和添加系统环境变量都选上ffmpeg:下载好exe文件,把目录添加到系统环境变量就行2. 安装yt-dlppip install yt-...

发表评论    

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