让url链接在new,namedwindow中打开

时间:2013-06-04 20:24:06

标签: html5 base

我正在使用HTML5,我得到的网站url链接在另一个名为“collegeWin”的窗口中打开,但是我希望我点击的所有链接打开到同一个窗口,而不是一个新窗口每次。我不希望每次点击链接都有很多新窗口。我做了本书所说的,使用基本元素并使用target =“collegeWin”但没有运气。有什么想法吗?

这是我的代码:

  <meta charset="UTF-8" />
  <title>Wisconsin Colleges and Universities</title>

  <script src="modernizr-1.5.js"></script>
  <link href="hestyles.css" rel="stylesheet" type="text/css" />
  <base target="collegeWin" />

1 个答案:

答案 0 :(得分:0)

基本上,您想要打开特定帧的所有链接。试试这个......

function callme(event) {
event.preventDefault();
document.frames["frame"].location = $(this).attr('href');
}

标记:

<a href="http://google.com"  target="frame" onclick="callme.call(this,event)">
Link
</a>
<a href="http://yahoo.com" target="frame" onclick="callme.call(this,event)">
Link
</a>

试试这个: jsFiddle