Jump to content
  • 0

Таблица и форма


ins
 Share

Question

Внутри формы расположена таблица, в ячейках которой разные input'ы. Пока input'ы находятся в одной ячейке - проблем нет, как только помещаешь в объединенную - начинаются проблемы. Как этого можно избежать? И чем плох нижеупомянутый код.


<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html>
<form action="1.html">
<table border>
<tr>
<td rowspan="3">
<input type="radio" name="r1" value="r1">1<br>
<input type="radio" name="r2" value="r2">2<br>
<input type="radio" name="r3" value="r3">3<br>
</td>
<td>1</td>
</tr>
<tr><td>2</td></tr>
<tr><td>3</td></tr>
</table>
<input type="submit">
</form>
</html>

Сами данные передаются, но вот с выделением радио-кнопок появляются проблемы.

Link to comment
Share on other sites

3 answers to this question

Recommended Posts

  • 0

<form action="1.html">
<table border>
<tr><td rowspan="3">
<input type="radio" name="rb" value="rb1">1<br>
<input type="radio" name="rb" value="rb2">2<br>
<input type="radio" name="rb" value="rb3">3<br>
</td>
<td>1</td></tr>
<tr><td>2</td></tr>
<tr><td>3</td></tr>
</table>
<input type="submit">
</form>

Вот так вот вы наверное хотели?

Повнимательней просто надо быть.

Link to comment
Share on other sites

  • 0

Странная идея. Зачем так объединять? При увеличении шрифта (в FF2/Safari, например) рвется визуальная связь между кнопками и подписями, оно надо? Плюс неплохо было бы обернуть подписи в label, чтобы они тоже стали кликабельными. Ну и совсем строго говоря, для такой группировки полей таблица не нужна...

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