- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有一个 html 表格,正在将其导出到 Excel 文件,我可以创建、加载和导出该文件转换为 .xls 文件格式。
一旦我通过以下方式完成向表中添加值各种 SQL 语句,我调用一个 javascript 函数来检查表中是否为 null值,如果表的“td”(分别)具有空值,则在该“td”中输入 0。
现在的问题是,当我在不同页面上单击“导出到 Excel”后调用 window.onload 上的函数时,就像它只是加载表格而不运行脚本一样excel 文件中仍然包含空(null)值。
但是如果我取出将信息写入 Excel 文件的代码并将其显示为普通的 html 页面,它会调用该函数并将 null 值设置为 0。
所以我的想法是这个函数被完全排除了,我不知道如何包含它在我写入 Excel 文件的部分。
下面是我的 JavaScript 代码示例以及我用来写入 Excel 文件的代码:
<script>
window.onload = function change() {
var count='0';
var TDs=document.getElementsByTagName('td')
var length=TDs.length;
i='0';
while(i<length){
if(TDs[i].innerHTML==''){
count++;
TDs[i].innerHTML = "0";
}
i++;
}
}
</script>
<%
Response.Clear
Response.Buffer = true
Response.ContentType = "application/vnd.ms-excel"
if ModuleName = "*ALL*" then
Response.AddHeader "Content-disposition", "attachment;filename=" & CourseName & ".xls"
else
Response.AddHeader "Content-disposition", "attachment;filename=" & ModuleName & ".xls"
end if
Response.Charset = ""
!!!the code for the creating of the tables is in between here!!!
Response.End
%>
这是我放置 -1 和 0 的表格。*注意,这是在 4 个 while 循环和 3 个其他表之间。
<tr>
<td width="50%"><font face="Arial" size="1"><%=rsUserAnswers("FileText")%></td>
<td width="50%"><font face="Arial" size="1"><%=rsUserAnswers("VoiceFile")%></td>
<%if rsUserModules1("LinkType") = "Submit Answer Multi" then
readyList1 = Split(rsUserModules1("LinkAction"),",")
%>
<td width="50%" style="font-family: Arial; font-size: x-small;">
<%For i = 0 TO UBound(readyList1) %>
<%if InStr(readyList1(i),"A")>0 then%>
<%output=rsUserAnswers("Score1")
if output <> "-1" then %>
0
<%else%>
<%=output%>
<%end if%>
<%end if%>
<%if InStr(readyList1(i),"B")>0 then%>
<%output=rsUserAnswers("Score2")
if output<> "-1" then %>
0
<%else%>
<%=output%>
<%end if%>
<%end if%>
<%if InStr(readyList1(i),"C")>0 then%>
<%output=rsUserAnswers("Score3")
if output <> "-1" then %>
0
<%else%>
<%=output%>
<%end if%>
<%end if%>
<%if InStr(readyList1(i),"D")>0 then%>
<%output=rsUserAnswers("Score4")
if output <> "-1" then %>
0
<%else%>
<%=output%>
<%end if%>
<%end if%>
<%if InStr(readyList1(i),"E")>0 then%>
<%output=rsUserAnswers("Score5")
if output <> "-1" then %>
0
<%else%>
<%=output%>
<%end if%>
<%end if%>
<%if InStr(readyList1(i),"F")>0 then%>
<%output=rsUserAnswers("Score6")
if output <> "-1" then %>
0
<%else%>
<%=output%>
<%end if%>
<%end if%>
<%if InStr(readyList1(i),"G")>0 then%>
<%output=rsUserAnswers("Score7")
if output <> "-1" then %>
0
<%else%>
<%=output%>
<%end if%>
<%end if%>
<%if InStr(readyList1(i),"H")>0 then%>
<%output=rsUserAnswers("Score8")
if output <> "-1" then %>
0
<%else%>
<%=output%>
<%end if%>
<%end if%>
<%next%>
</td>
<%else%>
<td width="50%"><font face="Arial" size="1"><%=rsUserAnswers("Score")%></td>
<%end if%>
</tr>
rsUserAnswer(Score1,2,3,4,5,6,7,8) 是在 SQL 的 case 语句中创建的各个列。
我从上表得到的结果是这样的:
AnswerText VoiceFile Score
right none -1
wrong none 'blank'
wrong none 'blank'
right none -1
但这不正确,我需要这样:
AnswerText VoiceFile Score
right none -1
wrong none 0
wrong none 0
right none -1
但是你的(@Shadow Wizard)只是给了我最后一个条目,如下所示:
AnswerText VoiceFile Score
right none 0 <--- needs to be -1
wrong none 0
wrong none 0
right none -1
最佳答案
你不能。
您正在向浏览器发送您(错误地)声称是 Excel 文档的内容。
浏览器将看到您正在向其发送 Excel 文档并将其传递给 Excel。
Excel 将打开它,发现它不是 Excel 文档,但认识到它是 HTML 文档,并尝试将其转换为 Excel 文档。
Excel 不会执行嵌入在 HTML 中的 JavaScript。
如果您想修改 HTML,请使用服务器端代码来完成。
关于javascript - 如何在导出到 Excel 之前触发更改 html 表的 Javascript 函数?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27904264/
C语言sscanf()函数:从字符串中读取指定格式的数据 头文件: ?
最近,我有一个关于工作预评估的问题,即使查询了每个功能的工作原理,我也不知道如何解决。这是一个伪代码。 下面是一个名为foo()的函数,该函数将被传递一个值并返回一个值。如果将以下值传递给foo函数,
CStr 函数 返回表达式,该表达式已被转换为 String 子类型的 Variant。 CStr(expression) expression 参数是任意有效的表达式。 说明 通常,可以
CSng 函数 返回表达式,该表达式已被转换为 Single 子类型的 Variant。 CSng(expression) expression 参数是任意有效的表达式。 说明 通常,可
CreateObject 函数 创建并返回对 Automation 对象的引用。 CreateObject(servername.typename [, location]) 参数 serv
Cos 函数 返回某个角的余弦值。 Cos(number) number 参数可以是任何将某个角表示为弧度的有效数值表达式。 说明 Cos 函数取某个角并返回直角三角形两边的比值。此比值是
CLng 函数 返回表达式,此表达式已被转换为 Long 子类型的 Variant。 CLng(expression) expression 参数是任意有效的表达式。 说明 通常,您可以使
CInt 函数 返回表达式,此表达式已被转换为 Integer 子类型的 Variant。 CInt(expression) expression 参数是任意有效的表达式。 说明 通常,可
Chr 函数 返回与指定的 ANSI 字符代码相对应的字符。 Chr(charcode) charcode 参数是可以标识字符的数字。 说明 从 0 到 31 的数字表示标准的不可打印的
CDbl 函数 返回表达式,此表达式已被转换为 Double 子类型的 Variant。 CDbl(expression) expression 参数是任意有效的表达式。 说明 通常,您可
CDate 函数 返回表达式,此表达式已被转换为 Date 子类型的 Variant。 CDate(date) date 参数是任意有效的日期表达式。 说明 IsDate 函数用于判断 d
CCur 函数 返回表达式,此表达式已被转换为 Currency 子类型的 Variant。 CCur(expression) expression 参数是任意有效的表达式。 说明 通常,
CByte 函数 返回表达式,此表达式已被转换为 Byte 子类型的 Variant。 CByte(expression) expression 参数是任意有效的表达式。 说明 通常,可以
CBool 函数 返回表达式,此表达式已转换为 Boolean 子类型的 Variant。 CBool(expression) expression 是任意有效的表达式。 说明 如果 ex
Atn 函数 返回数值的反正切值。 Atn(number) number 参数可以是任意有效的数值表达式。 说明 Atn 函数计算直角三角形两个边的比值 (number) 并返回对应角的弧
Asc 函数 返回与字符串的第一个字母对应的 ANSI 字符代码。 Asc(string) string 参数是任意有效的字符串表达式。如果 string 参数未包含字符,则将发生运行时错误。
Array 函数 返回包含数组的 Variant。 Array(arglist) arglist 参数是赋给包含在 Variant 中的数组元素的值的列表(用逗号分隔)。如果没有指定此参数,则
Abs 函数 返回数字的绝对值。 Abs(number) number 参数可以是任意有效的数值表达式。如果 number 包含 Null,则返回 Null;如果是未初始化变量,则返回 0。
FormatPercent 函数 返回表达式,此表达式已被格式化为尾随有 % 符号的百分比(乘以 100 )。 FormatPercent(expression[,NumDigitsAfterD
FormatNumber 函数 返回表达式,此表达式已被格式化为数值。 FormatNumber( expression [,NumDigitsAfterDecimal [,Inc
我是一名优秀的程序员,十分优秀!