Jump to content
  • 0

Нажатие на tr поле


xander84
 Share

Question

<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>table</title>
<style type="text/css">
table tr {background-color:#d6d6f9;}
tr:hover {background-color: #9092EC;}
</style>
<script type="text/javascript">
function checked() {

}
</script>
</head>
<body>
<table width="100%" cellspacing="0" border="1">
<tr>
<td><input name="neft" type="checkbox" value="1" id="neft" /> Нефть</td>
<tr/>
<tr>
<td><input name="zoloto" type="checkbox" value="2" id="zoloto" /> Золото</td>
<tr/>
<tr>
<td><input name="drevesina" type="checkbox" value="3" id="drevesina" /> Древесина</td>
<tr/>
<tr onclick=""checked"">
<td>Нефть</td>
</tr>
<tr>
<td>Золото</td>
</tr>
<tr>
<td>Древесина</td>
</tr>
</table>
</body>
</html>

Есть вот такой код , подскажите что мне надо написать в скрипте чтобы при событии onclick на tr отмечался соответсвующий checkbox

Link to comment
Share on other sites

2 answers to this question

Recommended Posts

  • 0

Я бы предложил не парится, а использовать <label>:

<input name="neft" type="checkbox" value="1" id="neft" /><label for="neft">Нефть</label>

Параметр for ссылается на id элемента, к которому привязывается <label>.

Link to comment
Share on other sites

  • 0
Есть вот такой код , подскажите что мне надо написать в скрипте чтобы при событии onclick на tr отмечался соответсвующий checkbox

Зачем всё усложнять?

<label style="display: block;"><input name="neft" type="checkbox" value="1" id="neft" /> Нефть</label>

И кто вас так учил тег <tr> закрывать? И где доктайп?

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