(JSP)在文本域中显示超链接——JavaScript部分

完成了applet之后就要开始写JavaScript部分了。因为JavaScript也被浏览器解释,所以可以方便地与applet进行交互。

 

//     @author Zenny Chen

//  First loaded javascript function for communication with the specified applet
function  accessApplet()  
{
    
if(window.document.testApplet != null{
        
var ip = window.location.href;
        window.document.testApplet.setSocketURL(ip);
        window.document.testApplet.setMayRun(
true);
        setTimeout(
"loopProcessApplet()"1000);
    }

}



function  loopProcessApplet()
{
    processApplet();
    setTimeout(
"loopProcessApplet()"1000);
}



function  processApplet()  
{
    
if(window.document.testApplet == null)
        
return;
    
var str = window.document.testApplet.getURLName();
    
if(str != ""{
        window.document.testApplet.clearURLName();
        
var win = window.open(str,"","height=300,top=100,left=100,toolbar=no,menubar=no,status=no");
        win.close();
    }

}



//  First loaded javascript function for communication with the two specified applets
function  accessAppletDual()
{
    
var ip = window.location.href;
    
if(window.document.testApplet != null{
        window.document.testApplet.setSocketURL(ip);
        window.document.testApplet.setMayRun(
true);
    }

    
if(window.document.testApplet2 != null{
        window.document.testApplet2.setSocketURL(ip);
        
        
if(window.document.testApplet == null)
            window.document.testApplet2.setMayRun(
true);
    }

    
if(window.document.testApplet == null && window.document.testApplet2 == null)
        
return;
    setTimeout(
"loopProcessAppletDual()"1000);
}


function  loopProcessAppletDual()
{
    processAppletDual();     
    setTimeout(
"loopProcessAppletDual()"1000);
}


function  processAppletDual()
{
    
if(window.document.testApplet != null{
        
var str = window.document.testApplet.getURLName();
        
if(str != ""{    
            window.document.testApplet.clearURLName();
            
var win = window.open(str ,"","height=300,top=100,left=100,toolbar=no,menubar=no,status=no");
            win.close();
        }

    }

    
if(window.document.testApplet2 != null{
        
if(!window.document.testApplet2.GetIsOver()) {    
            
if(window.document.testApplet == null)
                window.document.testApplet2.setMayRun(
true);
            
else
                window.document.testApplet2.setMayRun(window.document.testApplet.GetIsOver());
        }

        
var str = window.document.testApplet2.getURLName();
        
if(str != ""{    
            window.document.testApplet2.clearURLName();
            
var win = window.open(str ,"","height=300,top=100,left=100,toolbar=no,menubar=no,status=no");
            win.close();
        }

    }

}

         以上代码包括两个部分,accessApplet() 、loopProcessApplet()和processApplet()用于在一个Web中控制一个applet。而后面含有Dual的则是一个页面中含有两个这样的applet需要由JavaScript进行控制。

 

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值