gpt4 book ai didi

javascript - 语法错误 : unterminated string literal

转载 作者:太空狗 更新时间:2023-10-29 13:49:44 36 4
gpt4 key购买 nike

我在下面的代码中遇到了奇怪的错误。

   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 控制台中。我只是附上了一个屏幕截图

Screenshot

您可以看到,在两个按钮(打印和导出)下,代码出现在屏幕上。这些代码行是函数 export_to_excel()

的一部分

它在我的本地服务器上也能完美运行。我正在使用 PrototypeJS,很抱歉造成误导,也很抱歉延迟。

任何帮助将不胜感激

最佳答案

我已经在下面实现了你的代码,效果很好首先在这一行定义你的 id/class results_html = $('report_excel').innerHTML;

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();
}

关于javascript - 语法错误 : unterminated string literal,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19269383/

36 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com