在 PDF 格式中用 JavaScript 将数字转换为单词

Convert digits into words with JavaScript in PDF Form

当我在 Foxit Reader 的 PDF 表单中使用 Salman 在 Convert digits into words with JavaScript 中提到的代码时 - 自定义计算脚本,它不起作用,当我看到控制台时它说:

======== Field : calculate ========
[ Line: 00015 { ReferenceError } ] : document is not defined

我需要在此修改什么才能使其以 PDF 格式工作?

您显然需要更改代码

document.getElementById('number').onkeyup = function () {
    document.getElementById('words').innerHTML = inWords(document.getElementById('number').value);
};

相当于 foxit

类似

this.getField ("words").value = inWords(this.getField("number").value)

https://www.foxitsoftware.com/blog/how-to-create-forms-that-perform-simple-mathematical-calculations/

https://developers.foxitsoftware.com/kb/article/javascript-pdf-sdk-java/

https://www.foxitsoftware.com/blog/how-to-add-javascript-functionality-to-pdf-forms-without-coding/