Jump to content
  • 0

программно задать цвет фона ячейки


Patch
 Share

Question

Доброго времени суток

Требуется при нажатии на ссылку изменять цвет в таблице.

Я пишу так:

Код:

<html>

<head>

<script>

function chcolor(){

document.all("tab").bgcolor="silver"

}

</script>

</head>

<body>

<table id="tab">

<tr>

<td> <a href=# onclick="chcolor();">test</a></td>

</tr>

</table>

</body>

</html>

ничего не происходит, пробывал и подругому, уже заколебался..

помогите решить проблему, надо срочно.

Спасибо зарание...

Link to comment
Share on other sites

1 answer to this question

Recommended Posts

  • 0

function chcolor(){
document.getElementById("tab").style.backgroundColor="silver"
}

для универсальности можно идентификатор передавать через параметр функции:

function chcolor(id){
document.getElementById(id).style.backgroundColor="silver"
}

в коде задавать тогда так:

onclick="chcolor('tab');"

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