Jump to content

Евгений_Воля

Newbie
  • Posts

    2
  • Joined

  • Last visited

Everything posted by Евгений_Воля

  1. Есть открытие div при нажатии ссылки, а как сделать чтобы сразу отображалось содержимое div на странице? Исходники: ____________________ Страница отображения : <html><head><title>Подгрузка нужного контента других страниц</title><meta http-equiv="Content-Type" content="text/html; charset=UTF-8"><meta http-equiv="Content-Language" content="ru"><script src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js" type="text/javascript"></script> <script>$(document).ready(function(){ ;(function($) { $.lebnikLoad = function(selector, url, callback){ $(document.body).lebnikLoad(selector, url, callback, true); }; $.fn.lebnikLoad = function(selector, url, callback, without_selector_document){ var selector_document = this; var e = $('<iframe style="display:none" src="'+url+'"></iframe>'); $(document.body).append( e ); $(e).load(function(){ var x = $(selector, e[0].contentWindow.document); if(callback){ callback(x); }else if(without_selector_document != true){ $(selector_document).html( $(x).html() ); } }); };})(jQuery);});</script> </head><body> <a href="#content_from2" onclick="$('#videobox').html('Загрузка...').lebnikLoad('#content_from1', 'http:/домен/page.html'); return false;">Открыть</a> <div id="videobox"></div> </body></html>___________________Страница от куда загружается контент:<html><head><title>Отображение в div</title><META HTTP-EQUIV=”Content-Type” content="text/html; charset=windows-1251"><meta http-equiv="Content-Language" content="ru"></head><body> <div id="content_from1"> Цена: уточняйте </div> </body></html>
  2. http://forum.freemar...=1&d=1376555165 Перестала работать вторая кнопка, и при выводе в окне появилось слово "undefined" , помогите заменить слово на слово "ЦЕНА" И исправить работу второй кнопки! Заранее благодарен! Вот код: <script type="text/javascript">// <![CDATA[ OK1=" -3370 гривен"; OK2=" -2750 гривен"; OK3=" -1999 гривен"; function getDate() { today=new Date(); return today.toLocaleString()+"n"; } function CheckRadio(form,value) { if(value=="Good") form.Letter.value=getDate(1)+OK1; else form.Letter.value=getDate(2)+OK2; else form.Letter.value=getDate(3)+OK3; } // ]]></script> <h1>Выбирите ширину спального места:</h1> <form name="Sel"> <h3><input onclick="if(this.checked) CheckRadio(this.form,this.value);" type="radio" name="Code" value="Good" /> <strong style="font-size: 1.17em;">Диван </strong><strong style="font-size: 1.17em;">(ширина спального места 1,5 м.п.) </strong><strong style="font-size: 1.17em;">-3370 грн</strong></h3> <h3><input onclick="if(this.checked) CheckRadio(this.form,this.value);" type="radio" name="Code" value="Good" /> <strong style="font-size: 1.17em;">Диван</strong><span style="font-size: 1.17em;"> </span><span style="font-size: 1.17em;">(ширина спального места 1,3 м.п.) </span><span style="font-size: 1.17em;">-</span><span style="font-size: 1.17em;">2750 грн</span></h3> <h3><input onclick="if(this.checked) CheckRadio(this.form,this.value);" type="radio" name="Code" value="Bad" /><strong style="font-size: 1.17em;"> </strong><span style="font-size: 1.17em;">Кресло (ширина спального места 0,9 м.п.)</span><span style="font-size: 1.17em;">-1999 грн</span></h3> <h3> </h3> <p><textarea name="Letter" rows="3" cols="35"></textarea> <input type="reset" value="Сброс" /></p> </form>
×
×
  • 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