我正在使用JSF调用JS函数,但它在兼容模式的IE中不起作用,有谁知道为什么会发生这种情况?它在chrome和Mozilla中完美运行,但在IE中找不到函数sendPdf()。
JSF:
<af:commandButton text="#{bundle['enviar']}"
onclick="sendPdf()"
disabled="#{!page.notEmptyTable}" />
JS:
<afh:script> function sendPdf(){
pdf();
document.getElementById("stringPdfDocument").value= doc.output();
document.getElementById("enviarDocumento").click(); } </afh:script>
pdf函数使用以下包括:
<afh:script source="/jsLibs/jspdf.js"/>