gpt4 book ai didi

java - 在jsp页面中包含外部javascript文件

转载 作者:行者123 更新时间:2023-11-30 11:55:52 27 4
gpt4 key购买 nike

我有一个名为 paging.js 的外部 JavaScript 文件。以下是文件的内容:

function Pager(tableName,itemPerPage){
this.tableName = tableName;
this.itemPerPage = itemPerPage;
this.currentPage = 1;
this.pages = 0;

this.init()= function(){
alert("init called ");
var rows = document.getElementById(tableName).rows;
var records = (rows.length - 1);
this.pages = Math.ceil(records / itemPerPage);
}

this.showPageNav = function(pagerName,positionId){
alert("show page navi call");
var element = document.getElementById(positionId);
var pagerHtml = '<input src = "next.jpg" type="image">';
pagerHtml += '<input src = "next.jpg" type="image">' ;
element.innerHTML = pagerHtml;
}
}

现在我尝试从我的 jsp 页面调用 init,例如 .

<script type="text/javascript">
var pager = new Pager('results',7);
pager.init();
</script>

这段代码是我在完成我的 jsp 页面中的 body 部分之前输入的。

为了包括这个页面,我放了一行

<script type="text/javascript" 
src="${pageContext.request.contextPath}/js/paging.js"></script>

但是我无法调用 init 方法。有没有人帮我找问题?

最佳答案

这行代码就是问题所在:

this.init()= function(){

将其更改为:

this.init=function() {

关于java - 在jsp页面中包含外部javascript文件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4790720/

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