udf问题,找不到对象变量,请求协助!
请求协助,找不到对象变量截图
本弹出窗口源代码
<html>
<head>
<title>文件上传</title>
<meta http-equiv="Content-Type" content="text/html; charset=gbk">
<META HTTP-EQUIV="pragma" CONTENT="no-cache">
<META HTTP-EQUIV="Cache-Control" CONTENT="no-cache, must-revalidate">
<link href="../theme/Master.css" rel="stylesheet" type="text/css" />
<script src="../js/rnd.js"></script>
</head>
<base target="_self">
<body style="margin:20px 10px 10px 20px" >
<FORM METHOD="POST" NAME="upform" action="uploadfile_result_c.jsp?type=1&path=4" ENCTYPE="multipart/form-data" >
<table width="100%" border="0" cellpadding="0" cellspacing="0">
<tr>
<tdalign="center">
<table id="uploadTable" width="80%" border="0" cellpadding="0" cellspacing="0" class="table_blue">
<tr>
<th colspan="2">文件上传</th>
</tr>
<tr>
<td colspan=2 height="25" align="center">单个文件最大上传5MB,总最大上传20M(doc/xls/txt/pdf/zip/wps/et)</td>
</tr>
<tr height="25">
<td width="30%">选择上传文件</td>
<td width="70%">
<input type="FILE" name="FILE1" size="30" style="border : 1px solid #008000;">
<inputtype="button" value="新增附件" onclick="insertRow();" style="height:18px;border : 1px solid #008000;">
</td>
</tr>
</table>
</td>
</tr>
<tr>
<td align="center">
<inputtype="button" class="ok" value="上 传" onclick="upload()"/>
<input type="button" class="return" onClick="javascript:window.close();" value="取消" />
</td>
</tr>
</table>
</form>
</body>
<script language="javascript">
<!--
function upload() {
var timestamp = timemark();
var files=document.getElementsByName("FILE1");
if(files.value==""){
alert("请选择文件");
return false;
}
document.upform.action="uploadfile_result_c.jsp?type=1&path=4&timemark="+timestamp;
document.upform.submit();
}
function insertRow(){
table=document.getElementById("uploadTable");
index = table.rows.length;
if(index<=5){
nextRow = table.insertRow(index);
cell0 = nextRow.insertCell(0);
cell1 = nextRow.insertCell(1);
cell0.innerHTML ="选择上传文件["+(index-1)+"]";
cell1.innerHTML ="<input type=\"FILE\" name=\"FILE1\" size=30 style=\"border : 1px solid #008000;\"></span>";
}
}
//-->
</script>
</html> 你想要做什么?
同时,可否给出你现行的代码? 本帖最后由 arker 于 2010-12-20 16:39 编辑
父窗口相关源代码
<td colspan="3" class="tb_bg01" >
<input name="ext_filename" id="ext_filename" style="color:#DC143C;TEXT-DECORATION: underline;cursor:hand;" type="text" value="上传文档" readonly onclick="upload();">
</td>
利用以下代码弹出上述窗口
$o_form1 = _IEFormGetObjByName($oIE1, "archivesForm") ;找到表单
$oQuery1 = _IEFormElementGetObjByName ($o_form1, "ext_filename")
_IEAction($oQuery1,"click")
用 _IEAttach ( "文件上传 -- 网页对话框" ) 代码找不到弹出窗口的窗口变量。
这个窗口弹出,已经禁用了右键菜单。
目的是把
$oFilename="D:\jzbg\"& $shujv & "的报告.doc"
这样一个文件写入上传对话框,进行批量上传。
谢谢!
页:
[1]