提取ewebeditor 的图片地址

admin5年前IT技术1552

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

相关文章

excel打开csv 出现乱码怎么解决

1使用记事本打开CSV文件2点击菜单:文件-另存为,编码方式选择ANSI3保存完毕后,再用EXCEL打开这个文件就不会出现乱码的情况...

acme.sh 使用文档

acme.sh 使用文档

这是acme.sh的使用文档,介绍了如何使用ACME协议自动管理和获取SSL/TLS证书,包括安装、注册、手动和自动签发证书,以及自动部署和更新证书的过程。ACME是"Automatic C...

ubuntu 远程连接 22 端口

安装OpenSSHUbuntu缺省没有安装SSH Server,使用以下命令安装:sudo apt-get install openssh-server openssh-client不过Ubuntu缺...

MYSQL带存储过程备份命令

命令中要加-R mysqldump -u root -p -R 数据库名称 > 备份文件名.sql...

美国人喜欢自己动手装修房子

参考文献::http://www.sohu.com/a/291910017_100085730原因有三:1.美国人工贵       ...

php正则提取中文

<?php$str = "用户名123阿斯蒂芬dfsdf阿道夫";//把结果放在$chinese中//GBK/GB2312使用:preg_match_all("/[...

发表评论    

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