Jump to content
  • 0

С точки зрения кодинга


romoga
 Share

Question

имеется следующая конструкция

 

$('a.ssilka1').click(function(event){
  event.stopPropagation();
document.getElementById('frameAll').contentWindow.location.href="ssilka1i.html";
});

$('a.ssilka2').click(function(event){
  event.stopPropagation();
document.getElementById('frameAll').contentWindow.location.href="ssilka2.html";
});

 и так далее...

 и таких много ввиду того что я не больше не знаю как можно подгрузить во фрейм данные...

ничего что так много функций или я нуб и должен молится великому КАА и переделать???

Link to comment
Share on other sites

4 answers to this question

Recommended Posts

  • 0
<script type="text/javascript">    jQuery(document).ready(function ($) {        $(".wrapper").on("click", "a", function(e){            e.preventDefault();                        var $el     = $(this),                url     = $el.attr("href");            document.getElementById('frameAll').contentwindow.location.href = url;        });    });</script>

код не проверял, но скорее всего работает.

Link to comment
Share on other sites

  • 0
и все? а то что их в коде 50 штук ?? ниче?

Ниче. Ибо событие навешивается на все ссылки. При клике просто подставляется значение аттрибута href именно той ссылки на которую кликнули

Link to comment
Share on other sites

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.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

 Share

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. See more about our Guidelines and Privacy Policy