IE没有找到JS代码

时间:2017-04-24 12:10:55

标签: javascript internet-explorer jsf jspdf

我正在使用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"/>

0 个答案:

没有答案