当前位置: 编程技术>java/j2ee
多种方法实现当jsp页面完全加载完成后执行一个js函数
来源: 互联网 发布时间:2014-10-19
本文导语: 方法1:如下程序,当页面完全加载后执行openTheIndexPage()方法 代码如下: Telecommunications Data Collection System function openTheIndexPage() { openMyURIWithCid(true, 'root', 'IDX', "iframe/dispatch.jsp?url=tdc/zhk/impctrlobjinf/index/index.jsp", '首页', 'top.tagmen...
方法1:如下程序,当页面完全加载后执行openTheIndexPage()方法
Telecommunications Data Collection System
function openTheIndexPage() {
openMyURIWithCid(true, 'root', 'IDX', "iframe/dispatch.jsp?url=tdc/zhk/impctrlobjinf/index/index.jsp", '首页',
'top.tagmenu', 'top.maintop', true,
'system/accessPaths.do?currentModuleCode=IDX',
'mainmenu', true);
};
if(document.readyState=="complete"){
openTheIndexPage();
}
方法2:可以是以下几种,但是效果不如方法1.
window.onload=function name
function name();
第二种只能写入一个函数,而且无法给变量,其中最好用的是最后一种,可以独立写出来,怎么写都行。
方法3: xxx()为你要执行的函数
方法4:在script标记里加defer
即
或者
在整个页面加载完后运行脚本。(没有效果)
代码如下:
Telecommunications Data Collection System
function openTheIndexPage() {
openMyURIWithCid(true, 'root', 'IDX', "iframe/dispatch.jsp?url=tdc/zhk/impctrlobjinf/index/index.jsp", '首页',
'top.tagmenu', 'top.maintop', true,
'system/accessPaths.do?currentModuleCode=IDX',
'mainmenu', true);
};
if(document.readyState=="complete"){
openTheIndexPage();
}
方法2:可以是以下几种,但是效果不如方法1.
代码如下:
window.onload=function name
function name();
第二种只能写入一个函数,而且无法给变量,其中最好用的是最后一种,可以独立写出来,怎么写都行。
方法3: xxx()为你要执行的函数
方法4:在script标记里加defer
即
或者
在整个页面加载完后运行脚本。(没有效果)