我为我的网站创建了jquery标签。我的一个标签内容中有一些应用程序按钮。当我点击其中一个按钮(这些按钮包含不同的链接)时,它会将我带离我的标签页并在另一个页面中打开内容。我不想那样,我需要做什么?
答案 0 :(得分:1)
您需要添加
$(".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();
}
答案 1 :(得分:0)
<!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>