我有两个文件 A.asp 和 B.asp 。B.asp 包含我想在 A.asp 中使用的长 javascript 函数。为了包括它,我使用了:
<!--#include file="lib/B/B.asp"-->
...在 A.asp 的头部我补充说:
<script>
函数使用(){
try{
test = new FPDF();
}catch(err){
document.write(err);
}
}
new FPDF() 是对 B.asp 文件中函数 FPDF() 的对象引用,如下所示:
<script>
function FPDF(){
var x;
this.x = function x(){
...
}
}
</script>
我收到一条错误消息:“ReferenceError:FPDF 未定义”...我该如何正确执行此操作?我想做的是像这样调用 FPDF() 中的函数:
<script>
函数使用(){
try{
test = new FPDF();
test.x(); //!!!!
}catch(err){
document.write(err);
}
}