Jump to content

Текстовая форма и все что ее касается.


Maiden7
 Share

Recommended Posts

Всем снова доброго времени суток.

Теперь другой вопрос.

Я имею код

<a class="button9" href="1.html" target="MyFrame1">1</a>

<center><iframe name="MyFrame1" src="1.html" width="1420px" height="820px"></iframe></center>
<form action="1.html" target="MyFrame1" method="post">
    <p><b>Введите ваш отзыв:</b></p>
    <p><textarea rows="10" cols="45" name="text"></textarea></p>
    <p><input type="submit" value="Отправить"></p>
  </form>

Вписывая что либо в поле, и нажимая кнопку отправить, я запускаю указанное видео в Iframe окне.

Но что не впиши, результат: открывает 1.html.

Как сделать так, что бы вписывая 1 он открывал мне 1.html 

а вписывая 2, он открывал 2.html ?

Подскажите знатоки?

Link to comment
Share on other sites

А зачем тут вообще форма, если вы ничего на сервер не отправляете?

<iframe name="MyFrame1" src="1.html"></iframe>
<input>
<button>Open</button>
const iframe = document.querySelector("iframe"),
  input = document.querySelector("input"),
  btn = document.querySelector("button");

btn.onclick = function() {
  const val = +input.value;

  // let the file names be between 1 to ∞
  if (val && val > 0) {
    iframe.src = `${val}.html`;
  }
};

 

Link to comment
Share on other sites

  • 3 weeks later...
В 22.08.2017 в 04:14, Maiden7 сказал:

Суть такая же как тут

  Показать содержимое

 

Только в html формате! Без всякого флеша и лишних программ.

 

Чтобы получить ответ от сервера, нужно что-то ему для начала передать. 
Посредством HTML и БЕЗ КАКИХ-ЛИБО СКРИПТОВ не получится сделать то, что вы хотите. 

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
Reply to this topic...

×   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