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.
Здравствуйте, подскажите какой тег использовать для увеличения значения, пример на картинке.
Вроде, про такой тег я слышала. Если есть тег прогресс бар, значит и такое должно быть.
Question
bgraf
Добрый день
помогите почему ничепреведенный код в IE работает а FireFox нет
я скопировал всю страницу она маленькая
СПАСИБО ВСЕМ
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>Untitled Document</title>
<script language="JavaScript">
function show(num)
{
if (document.all("showdetailes" + num).style.display=="none")
{
document.all("showdetailes" + num).style.display="";
}
else
{
document.all("showdetailes" + num).style.display="none";
}
}
</script>
</head>
<body>
<table cellspacing="0" cellpadding="0" border="0">
<tr >
<td class="txt_curs" valign="middle">
aaaaaa
</td>
<td class="btn_harshama" align="center" valign="middle">
<img onclick="show(1)" src="amnon/harshama.jpg" />
</td>
</tr>
<tr id="showdetailes1" style="display: none;">
<td colspan="2">
<table class="table_style">
<tr>
<td colspan="2">
<font color="#EE8817" face="Arial" size="2">
xdfgdgfdfgsdgdsgfdgfdsgfdg
</font>
</td>
</tr>
</table>
</td>
</tr>
<tr >
<td class="txt_curs" valign="middle">
bbbbbb
</td>
<td class="btn_harshama" align="center" valign="middle">
<img onclick="show(2)" src="amnon/harshama.jpg" />
</td>
</tr>
<tr id="showdetailes2" style="display: none;">
<td colspan="2">
<table class="table_style">
<tr>
<td colspan="2">
<font color="#EE8817" face="Arial" size="2">
xdfgdgfdfgsdgdsgfdgfdsgfdg
</font>
</td>
</tr>
</table>
</td>
</tr>
</table>
</body>
</html>
Link to comment
Share on other sites
2 answers to this question
Recommended Posts
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.