讓我們說,我們已經下面的超鏈接代碼如何將兩個文本超鏈接
<a id="cont" href="www.first_site.com">Something</a>
,我想將它與彈出使用下面的Java代碼
<script language="javascript">
var popupWindow = null;
function centeredPopup(url,winName,w,h,scroll){
LeftPosition = (screen.width) ? (screen.width-w)/2 : 0;
TopPosition = (screen.height) ? (screen.height-h)/2 : 0;
settings =
'height='+h+',width='+w+',top='+TopPosition+',left='+LeftPosition+',scrollbars='+scroll+',resizable'
popupWindow = window.open(url,winName,settings)
}
</script>
<a href="www.second_site.com" onclick="centeredPopup(this.href,'myWindow','500','300','yes');return false">Anything</a>
結合是否有任何想法,我可以二者結合起來,這樣,當我第一次在超鏈接上點擊Something
,它開闢www.second_site.com
彈出並移動到www.first_site.com
任何幫助〜謝謝
您忘記了URL中的「http://」。以任何協議或'/'開始的鏈接都與當前的url /路徑有關。 – ThiefMaster