如何通过弹出窗口或页面打开链接?

时间:2013-12-25 08:33:03

标签: html

enter image description here 这是我的登录,我需要弹出窗口中的“更改密码”链接,而不是使用自我或空白。图片显示了示例登录和链接。

链接的代码:

<a href="Update Password.html" >Change Your password?</a>

1 个答案:

答案 0 :(得分:1)

Javascript

 <script type="text/javascript">
    function newPopup(url) {
        popupWindow = window.open(
            url,'popUpWindow','height=500,width=500,left=10,top=10,resizable=yes,scrollbars=yes,toolbar=yes,menubar=no,location=no,directories=no,status=yes')
    }
    </script>

Html

<a href="JavaScript:newPopup('Update Password.html');" >Change Your password?</a>