jquery选项卡问题

发布于 2024-11-05 07:10:26 字数 113 浏览 5 评论 0原文

我为我的网站创建了 jquery 选项卡。我的一个选项卡的内容中有一些应用程序按钮。当我单击其中一个按钮(这些按钮包含不同的链接)时,它将离开我的选项卡页面并打开另一页面中的内容。我不希望这样,所以我需要做什么?

I created jquery tabs for my website. I have some application buttons inside the content of one of my tabs. When I click on one of the buttons (these buttons contains different links) it takes me away from my tab page and opens the content in another page. I do not want that so what do i need to do?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

无边思念无边月 2024-11-12 07:10:26

您需要添加

$(".btn").click(function() {

// Code to run goes here...

Return False // - Stops the link from firing
}

或使用jquery,您可以执行preventDefault...

$(".btn").click(function(e) {

// code here...

e.preventDefault();
}

You need to add in

$(".btn").click(function() {

// Code to run goes here...

Return False // - Stops the link from firing
}

or using jquery you can do preventDefault...

$(".btn").click(function(e) {

// code here...

e.preventDefault();
}
蔚蓝源自深海 2024-11-12 07:10:26
<!DOCTYPE html>
<html>
<head>
<META name="WebPartPageExpansion" content="full">
<link href="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8/themes/base/jquery-ui.css" rel="stylesheet" type="text/css"/>
  <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.5/jquery.min.js"></script>
  <script src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8/jquery-ui.min.js"></script>

  <script>
  $(document).ready(function() {
    $("#frame-1").attr("src","http://www.google.com");
    $("#frame-2").attr("src","http://www.google.com");
    $("#frame-3").attr("src","http://www.google.com");
    $("#frame-4").attr("src","http://www.google.com");
    $("#tabs").tabs();
  });
  </script>
</head>
<body style="font-size:62.5%;">

<div id="tabs">
    <ul>
            <li><a href="#tabs-1">site1</a></li>
            <li><a href="#tabs-2">site2</a></li>
            <li><a href="#tabs-3">site3</a></li>
            <li><a href="#tabs-4">site4</a></li>
      </ul>
            <div id="tabs-1">
            <iframe id="frame-1" src="http://www.facebook.com" width="100%" height="500">
            <p>Your browser does not support iframes.</p> </iframe>
            </div>
    <div id="tabs-2">
            <iframe src="http://www.google.com" id="frame-2" width="100%" height="500">
            <p>Your browser does not support iframes.</p></iframe>  
    </div>
    <div id="tabs-3">
            <iframe src="url3" width="100%" id="frame-3" height="500">
            <p>Your browser does not support iframes.</p></iframe>  
    </div>
    <div id="tabs-4">
            <iframe  src="url4" id="frame-4">
            <p>Your browser does not support iframes.</p></iframe>  
    </div>



</div>
</body>
</html>
<!DOCTYPE html>
<html>
<head>
<META name="WebPartPageExpansion" content="full">
<link href="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8/themes/base/jquery-ui.css" rel="stylesheet" type="text/css"/>
  <script src="http://ajax.googleapis.com/ajax/libs/jquery/1.5/jquery.min.js"></script>
  <script src="http://ajax.googleapis.com/ajax/libs/jqueryui/1.8/jquery-ui.min.js"></script>

  <script>
  $(document).ready(function() {
    $("#frame-1").attr("src","http://www.google.com");
    $("#frame-2").attr("src","http://www.google.com");
    $("#frame-3").attr("src","http://www.google.com");
    $("#frame-4").attr("src","http://www.google.com");
    $("#tabs").tabs();
  });
  </script>
</head>
<body style="font-size:62.5%;">

<div id="tabs">
    <ul>
            <li><a href="#tabs-1">site1</a></li>
            <li><a href="#tabs-2">site2</a></li>
            <li><a href="#tabs-3">site3</a></li>
            <li><a href="#tabs-4">site4</a></li>
      </ul>
            <div id="tabs-1">
            <iframe id="frame-1" src="http://www.facebook.com" width="100%" height="500">
            <p>Your browser does not support iframes.</p> </iframe>
            </div>
    <div id="tabs-2">
            <iframe src="http://www.google.com" id="frame-2" width="100%" height="500">
            <p>Your browser does not support iframes.</p></iframe>  
    </div>
    <div id="tabs-3">
            <iframe src="url3" width="100%" id="frame-3" height="500">
            <p>Your browser does not support iframes.</p></iframe>  
    </div>
    <div id="tabs-4">
            <iframe  src="url4" id="frame-4">
            <p>Your browser does not support iframes.</p></iframe>  
    </div>



</div>
</body>
</html>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文