用window.open做一个提示窗口,里面放两个按钮
点击不同的按钮设置window.opener.location='中文/英文网址';

解决方案 »

  1.   

    用JavaScript的Window.open搞定,网上有好多例子可以借鉴
      

  2.   

    url.php(or htm,asp,cgi)
    ______________________________________________________
    <img src="url1" onclick='window.open("URL2","","")'>
    ______________________________________________________
    URL2文件
    —————————————————————————————
    <input type=button value="English" onclick='return checklink("url3.php")'>
    <input type=button value="Chinese" onclick='return checklink("url4.php")'>
    <script language=javascript>
    function checklink(url){
    location.href=url;
    }
    </script>
    ______________________________________________________
      

  3.   

    window.open("SelectLanguage.jsp","select","width=300,height=300,tools=no")
    在SelectLanguage.jsp中写:(1)english (2)中文点不同按妞进入不同页面