Jump to content

Sixella

Newbie
  • Posts

    9
  • Joined

  • Last visited

Everything posted by Sixella

  1. Может скрипт и ни при чем. Просто на сайте его дали вместе с тэгом который нужно вставить в страницу контакта... Просто я не совсем понимаю в JS вот и спрашиваю на форуме. Наверное френчи все таки "ортопеды" раз такое предлагают.
  2. не сп?р а компания предоставила. если нечем помочь не можешь - зачем флудишь ?
  3. Добрый день. Вот уже несколько дней бьюсь над одной проблемой, перерыл много ресурсов интернета но проблема так и остается. Необходимо при помощи яваскрипта со страницы "контакт" отправлять мейлы на почтовый ящик. КАК ЭТО СДЕЛАТЬ ??? вот страница www.stasart.com/fr/contact а вот скрипт // JavaScript Document var ResizeIframe = { wrapperId : "tinc_content", /** * Resizes an iframe sId including oDoc to oDoc's content size. * Can be called top-down, i.e. from the including iframe (or it's parents) or bottom-up, i.e. from the included document. * In the latter case the iframe element is retrieved programmatically. * * @param oDoc Included page's document object * @param sId ID of including iframe */ resize : function ( oDoc, sId ) { try { if ( typeof oDoc == "undefined" ) return; if ( typeof sId != "undefined" ) { var iframe = oDoc.getElementById( sId ); var iframeDoc = iframe.contentWindow.document; } else { var iframeDoc = oDoc; var iframeWindow = iframeDoc.parentWindow || iframeDoc.defaultView; var iframe = iframeWindow.frameElement; } var wrapper = iframeDoc.getElementById( this.wrapperId ); // make sure we only resize once if ( iframeDoc.isIntegrated == true ) { return; } // switch on transparency for iframe iframeDoc.body.style.backgroundColor = "transparent"; iframe.allowTransparency = "true"; iframeDoc.body.style.padding = "0px"; iframeDoc.body.style.border = "none"; //var iframe_container_width = iframe.parentNode.clientWidth; //var fixed_width = ResizeIframe.getMinimumLayoutWidth( wrapper ); var tabs = iframeDoc.getElementsByTagName( "table" ) if ( tabs[0] && tabs[0].className == "dborder" ) { wrapper.setAttribute( "wfx:overridewidth", "true" ); } else if ( iframeDoc.forms[0] && iframeDoc.forms[0].elements["formname"] ) { wrapper.setAttribute( "wfx:overridewidth", "true" ); } if ( window.addEventListener ) { var gcs = iframeDoc.defaultView.getComputedStyle( iframeDoc.body, null); var v_margin = parseInt( gcs.getPropertyValue( "margin-top" ) ) + parseInt( gcs.getPropertyValue( "margin-bottom" ) ); var h_margin = parseInt( gcs.getPropertyValue( "margin-left" ) ) + parseInt( gcs.getPropertyValue( "margin-right" ) ); wrapper.style.display = "table"; var wrapper_width = wrapper.offsetWidth; var flex = wrapper.getAttribute( "wfx:overridewidth" ); if ( flex == "true" ) { wrapper.style.width = "100%"; } else { iframe.style.width = wrapper_width + h_margin + "px"; } // Setting the top padding of the wrapper avoids wrong calculation of the height due to collapsing margins behavior wrapper.style.paddingTop = "1px"; height = wrapper.offsetHeight + v_margin; } else if ( window.attachEvent ) { iframeDoc.body.style.margin = "0px"; wrapper.style.display = "inline"; var wrapper_width = wrapper.offsetWidth; var flex = wrapper.getAttribute( "wfx:overridewidth" ); if ( flex != null && flex == "true" ) { wrapper.style.width = "100%"; } else { iframe.style.width = wrapper_width + 2 + "px"; } height = wrapper.offsetHeight; } if ( iframe.scrolling != "yes" ) { height += 20; } iframe.style.height = height + "px"; iframeDoc.isIntegrated = true; } catch ( ex ) { return; } } } код скопирован с сайта предоставляющего доменное имя. Спасибо большое за помощь
  4. я так понял это уже Java тут идет ? а без нее как то можно ? урок то у меня по HTML и CSS пока... и что значит псевдовыбор ?
  5. вот, но могут быть еще и ошибки конечно... все правда на французском языке, но суть вроде ясна... или нет ? <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> <HTML> <HEAD> <META HTTP-EQUIV="CONTENT-TYPE" CONTENT="text/html; charset=windows-1252"> <TITLE>title</TITLE> <STYLE TYPE="text/css"> </STYLE> <link rel="stylesheet" type="text/css" href="ex_01.css"> <style type="text/css"> <!-- body { background-color : Black; height : 500px; width : 400px; background-position: center; } div.c4 { text-align : left; } table.c1 { background-color : #000000; width : 470px; margin-left: 30%; margin-right: 30%; } td.c2 { width : 271px; right: auto; } td.c3 { background-color : Black; width : 195px; } .c5 { color : Black; } .c6 { font-family : thorndale, serif; font-size : small; } .style1 {color: #FF8040} --> </style> </HEAD> <body> <A HREF="#null" OnClick="alert('Exemple OnClick'); return false" LANGUAGE="Javascript"></A> <FORM ACTION="suite.html" METHOD="POST"> <table border=0 cellpadding=2 cellspacing=0 class="c1" id="table" align="center" > <col width=271> <col width=195> <tr> <td class="c2"><p align="right" class="style1">Identifiant :</p></td> <td class="c3"><div class="c4 style1"> <p style="margin-left: 0.25cm; margin-right: 0.01cm; text-decoration: none"> <input type=TEXT name="texte" tabindex=1 size=20 style="width: 4.37cm; height: 0.64cm"> </p> </div></td> </tr> <tr> <td class="c2"><p align="right" class="style1">Mot de passe (6 caracteres minimum) :</p></td> <td class="c3"><div class="c4 style1"> <p style="margin-left: 0.25cm; margin-right: 0.01cm; text-decoration: none"> <input type=PASSWORD name="password2" size=20 style="width: 4.34cm; height: 0.64cm; font-family: 'Courier New', monospace; font-size: 10pt"> </p> </div></td> </tr> <tr> <td class="c2"><p align="right" class="style1">Confirmez le mot de passe :</p></td> <td class="c3"><div class="c4 style1"> <p style="margin-left: 0.25cm; margin-right: 0.01cm; text-decoration: none"> <input type=PASSWORD name="password" size=20 style="width: 4.34cm; height: 0.64cm; font-family: 'Courier New', monospace; font-size: 10pt"> </p> </div></td> </tr> <tr> <td class="c2"><p align="right" class="style1">Adresse email :</p></td> <td class="c3"><div class="c4 style1"> <p style="margin-left: 0.25cm; margin-right: 0.01cm; text-decoration: none"> <input type=TEXT name="email" size=20 style="width: 4.34cm; height: 0.64cm"> </p> </div></td> </tr> <tr> <td class="c2"><p align="right" class="style1">Nom :</p></td> <td class="c3"><div class="c4 style1"> <p style="margin-left: 0.25cm; margin-right: 0.01cm; text-decoration: none"> <input type=TEXT name="Nom" size=20 style="width: 4.34cm; height: 0.64cm"> </p> </div></td> </tr> <tr> <td class="c2"><p align="right" class="style1">Prenom :</p></td> <td class="c3"><div class="c4 style1"> <p style="margin-left: 0.25cm; margin-right: 0.01cm; text-decoration: none"> <input type=TEXT name="Prenom" size=20 style="width: 4.34cm; height: 0.64cm"> </p> </div></td> </tr> <tr> <td class="c2"><p align="right" class="style1">Sexe :</p></td> <td class="c3"><div class="c4 style1"> <p style="margin-left: 0.25cm; margin-right: 0.01cm; text-decoration: none"> <input name="sexe" type=RADIO style="width: 0.34cm; height: 0.34cm" checked> <span class="c6"><span style="font-style: normal"><b>Homme <input type=RADIO name="sexe" style="width: 0.34cm; height: 0.34cm"> Femme</b></span></span></p> </div></td> </tr> <tr> <td class="c2"><p align="right" class="style1">Adresse :</p></td> <td class="c3"><div class="c4 style1"> <p style="margin-left: 0.25cm; margin-right: 0.01cm; text-decoration: none"> <input name="Adresse" type=TEXT style="width: 4.34cm; height: 0.64cm" size=20 maxlength="40"> </p> </div></td> </tr> <tr> <td class="c2"><p align="right" class="style1">Code Postal :</p></td> <td class="c3"><div class="c4 style1"> <p style="margin-left: 0.25cm; margin-right: 0.01cm; text-decoration: none"> <input name="code postal" type=TEXT style="width: 4.34cm; height: 0.64cm" size=20 maxlength="5"> </p> </div></td> </tr> <tr> <td class="c2"><p align="right" class="style1">Ville : </p></td> <td class="c3"><div class="c4 style1"> <p style="margin-left: 0.25cm; margin-right: 0.01cm; text-decoration: none"> <input type=TEXT name="ville" size=20 style="width: 4.34cm; height: 0.64cm"> </p> </div></td> </tr> <tr> <td class="c2"><p align="right" class="style1">Pays:</p></td> <td class="c3"><div class="c4 style1"> <p style="margin-left: 0.25cm; margin-right: 0.01cm; text-decoration: none"> <select name="hero" style="width: 4.34cm; height: 0.56cm"> <option selected>Choisissez <option value="t1">France <option value="t2">Belgique <option value="t3">Suisse <option value="t4">Luxembourg <option value="t5">Autres</option> </select> </p> </div></td> </tr> <tr> <td class="c2"><p align="right" class="style1">Vous êtes :</p></td> <td class="c3"><div class="c4 style1"> <p style="margin-left: 0.25cm; margin-right: 0.01cm; text-decoration: none"> <input name="vous etes" type=RADIO style="width: 0.34cm; height: 0.34cm" checked> <span class="c6"><span style="font-style: normal"><b>Particulier <input type=RADIO name="vous etes" style="width: 0.34cm; height: 0.34cm"> Entreprise</b></span></span></p> </div></td> </tr> <tr> <td class="c2"><p align="right" class="style1">Vos centres d'interets:</p></td> <td class="c3"><div class="c4 style1"> <p style="margin-left: 0.25cm; margin-right: 0.01cm; text-decoration: none"> <label> <input type="checkbox" name="checkbox" value="checkbox"> </label> Langage C </p> <p style="margin-left: 0.25cm; margin-right: 0.01cm; text-decoration: none"> <label> <input type="checkbox" name="checkbox2" value="checkbox"> UNIX</label> </p> <p style="margin-left: 0.25cm; margin-right: 0.01cm; text-decoration: none"> <label> <input type="checkbox" name="checkbox3" value="checkbox"> xHTML - CSS</label> </p> <p style="margin-left: 0.25cm; margin-right: 0.01cm; text-decoration: none"> <label> <input type="checkbox" name="checkbox4" value="checkbox"> PHP</label> </p> <p style="margin-left: 0.25cm; margin-right: 0.01cm; text-decoration: none"> <label> <input type="checkbox" name="checkbox5" value="checkbox"> MySql</label> </p> <p style="margin-left: 0.25cm; margin-right: 0.01cm; text-decoration: none"> <label> <input type="checkbox" name="checkbox6" value="checkbox"> Java</label> </p> <p style="margin-left: 0.25cm; margin-right: 0.01cm; text-decoration: none"> <label> <input type="checkbox" name="checkbox7" value="checkbox"> UML</label> </p> </div></td> </tr> <tr> <td class="c2"><label> <input name="Envoyer" type="submit" value="Envoyer"> </label></td> <td class="c3"><label> <input name="Reset" type=reset onClick="alert('sure ?')" value="Annuler" language="Javascript"> </label></td> </tr> </table> </FORM> </BODY> </HTML>
  6. нужно создать форму, при которой обязательно необходимо заполнять поля отмеченные звездочкой. "*" и как сделать так, что бы скрипт проверял все ли правильно заполнено ? Заранее спасибо.
  7. нет совсем, просто срочно нужна помощь
  8. Кто знает, помогите плиз. Вот уже скока недель бьюсь над тем, что бы создать свободный фрейм в странице http://shestakov.free.fr Другими словами в правой части станицы, там, где идет текст на французском, необходимо сделать но у меня никак не получается что бы этот фрейм был четко и конкретно на странице, как например в первом топике тут, когда идет код, а потом все остальное. использую все возможные проги для написания страниц и коды тоже сверял. ниче не получается. До понедельника надо закончить. прошу помогите.
×
×
  • 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