有没有办法使用jsp中包含的js文件中的函数覆盖jsp中存在的js函数

时间:2015-06-15 15:54:32

标签: javascript jsp

我有一个功能

function clearform() {
        var i;
        for (i = 0; (i < document.forms.length); i++) {
        document.forms[i].reset();
        }

在abc.jsp(说)中我有一个js文件包含在jsp名称xyz.js中(比如说) 有没有办法通过在xyz.js中添加一些内容来覆盖函数clearform,因为由于部署过程等原因,现在对jsp的更改超出了范围。

使用body标签

中的以下调用调用该函数
 <body onUnload="javascript:clearform();">

1 个答案:

答案 0 :(得分:0)

在你的html内容结束之前,像这样

<script>
(function(){
   window.clearform = function() { }
})();
</script>
</body>

将覆盖该功能