我有以下代码,其中出现了奇怪的错误。
function export_to_excel()
{
results_html = $('report_excel').innerHTML;
results_html = '<html><body><table align="center" cellspacing="0" cellpadding="0" width="100%"><tr><td colspan="9"><b>Employee Salary Register </b></td></tr><tr><td colspan="9"></td></tr>' + results_html + '</table></body></html>';
var input = new Element('input', {
'type': 'hidden',
'name': 'results[html]',
'value': results_html
});
var form = new Element('form', {
'method': 'post',
'name': 'Employee Salary Register',
'action': "html_to_excel"
});
form.insert(input);
document.body.appendChild(form);
form.submit();
}
错误发生在这一行
results_html = '<html><body><table align="center" cellspacing="0" cellpadding="0" width="100%"><tr><td colspan="9"><b>Employee Salary Register </b></td></tr><tr><td colspan="9"></td></tr>' + results_html + '</table></body></html>';
编辑:
错误显示在 指向该行的Firebug控制台中。我刚刚附上了一个屏幕截图
在那里你可以看到,在两个按钮(打印和导出)下,代码出现在屏幕上。这些代码行是函数的一部分export_to_excel()
它也可以在我的本地服务器中完美运行。我正在使用PrototypeJS,我很抱歉误导,也很抱歉延迟。
任何帮助将不胜感激