Jump to content
  • 0

форма и 2 кнопки


sc@r@bey
 Share

Question

6 answers to this question

Recommended Posts

  • 0
одна кнопка выполняет перезагрузку этой же страницы, а другая переходит на обработчик например action.php

Поподробнее объясни, пошагово: есть страница index.php и action.php, на какой из них две кнопки, или одна...? на какой должен быть куда переход и т.д...?

Link to comment
Share on other sites

  • 0

Если мы говорим чисто о html то данное не осуществимо, если вы собираетесь использовать JS или PHP то можно достичь определенного эффекта... советую почитать про сам тэг form http://www.htmlbook.ru/html/form.html

кстати если вы не упираетесь в 1 form то сделайти их 2 разместите в каждом по кнопке и будет вам счастье...

Edited by stars
Link to comment
Share on other sites

  • 0
index.html

<form >
<input type="button" value="Первая кнопка">
<input type="button" value="Вторая кнопка">
</form>

Первая кнопка перезагружает страницу

Вторая переходит на action.php

Как-то так наверное:

<script type = "text/javascript">
function showMessage1() {
if (confirm("Перезагрузить?")) {
parent.location='http://site.ru/index.php';
alert("Перезагружено!");
}
else {
alert("Не перезагружено!");
}
}
function showMessage2() {
if (confirm("Перейти на action?")) {
parent.location='http://site.ru/action.php';
}
else {
alert("Не перешли!");
}
}
</script>
<input name="button1" type="button" value="Перезагрузить?" onclick="return showMessage1()" />
<input name="button2" type="button" value="Перейти на action?" onclick="return showMessage2()" />

Edited by rus
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