Здравствуйте ! Помогите разобраться с вкладками ! Задача в том, что бы к кнопкам Document1, Document2, Document3, Document4, Document5 привязать выполнение какого либо действия, тоесть не просто вывод текстовой информации а например загрузка картинки или xml файла. Заранее благодарен вам за помощь !
$('#tabs a.tab').live('click', function() { // Get the tab name var contentname = $(this).attr("id") + "_content";
// hide all other tabs $("#content p").hide(); $("#tabs li").removeClass("current");
// show current tab $("#" + contentname).show(); $(this).parent().addClass("current"); });
$('#tabs a.remove').live('click', function() { // Get the tab name var tabid = $(this).parent().find(".tab").attr("id");
// remove tab and related content var contentname = tabid + "_content"; $("#" + contentname).remove(); $(this).parent().remove();
// if there is no current tab and if there are still tabs left, show the first one if ($("#tabs li.current").length == 0 && $("#tabs li").length > 0) {
// find the first tab var firsttab = $("#tabs li:first-child"); firsttab.addClass("current");
// get its link name and show related content var firsttabid = $(firsttab).find("a.tab").attr("id"); $("#" + firsttabid + "_content").show(); } }); }); function addTab(link) { // If tab already exist in the list, return if ($("#" + $(link).attr("rel")).length != 0) return;
// hide other tabs $("#tabs li").removeClass("current"); $("#content p").hide();
// add new tab and related content $("#tabs").append("<li class='current'><a class='tab' id='" + $(link).attr("rel") + "' href='#'>" + $(link).html() + "</a><a href='#' class='remove'>x</a></li>");
// set the newly added tab as current $("#" + $(link).attr("rel") + "_content").show(); } </script> </head> <body>
<div id="header"> <img src="logo.jpg" alt="JankoAtWarpSpeed demos" /><br /> <h2><span lang="ru"><strong>ДЕМО урока (нажмите на ссылки ниже)</strong></span></h2> <img src="help.png" alt="Click on lnks to open 'documents' in tabs" style="position:absolute;left:-170px; top:200px;" /> </div> <div id="main"> <div id="doclist"> <h2>Documents</h2>
<ul id="documents"> <li><a href="#" rel="Document1" title="This is the content of Document1">Document1</a></li> <li><a href="#" rel="Document2" title="This is the content of Document2">Document2</a></li> <li><a href="#" rel="Document3" title="This is the content of Document3">Document3</a></li> <li><a href="#" rel="Document4" title="This is the content of Document4">Document4</a></li> <li><a href="#" rel="Document5" title="This is the content of Document5">Document5</a></li>
</ul> </div> <div id="wrapper"> <ul id="tabs"> <!-- Tabs go here --> </ul> <div id="content"> <!-- Tab content goes here --> </div>
You can post now and register later.
If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.
Здравствуйте, подскажите какой тег использовать для увеличения значения, пример на картинке.
Вроде, про такой тег я слышала. Если есть тег прогресс бар, значит и такое должно быть.
Question
333_org_ua
Здравствуйте ! Помогите разобраться с вкладками ! Задача в том, что бы к кнопкам Document1, Document2, Document3, Document4, Document5 привязать выполнение какого либо действия, тоесть не просто вывод текстовой информации а например загрузка картинки или xml файла. Заранее благодарен вам за помощь !
Вот пример самой странички с вкладками http://zzz.ho.ua/
Вот html код:
Link to comment
Share on other sites
6 answers to this question
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.