A DHTML Problem !!

M

MingChih Tsai

Dear All,

How should I do if I want to get the left offset value of the button
2 !!

Thanks a lot !!

code as following .....

<HTML>

<HEAD>
<script language="javascript">
function test(e)
{
alert (e.offsetLeft);
}
</script>
</HEAD>

<body>
<form id="form1" method="post" runat="server">
<P></P>

<P> </P>
<P></P>

<P> <INPUT id="Button1" type="button" value="Button1" name="Button1"
onclick="javascript:return test(this)"></P>
<P> </P>
<P>
<TABLE width="500" align="center" border="1" ID="Table1">
<TR>
<TD style="WIDTH: 245px" width="245">test</TD>
<TD width="500"><INPUT id="Button2" type="button" value="Button2"
name="Button2" onclick="javascript:return test(this)"></TD>
</TR>
</TABLE>
</P>
</form>
</body>
</HTML>
 
B

bruce barker

offset from what? offsetLeft is the childs offset from its parent, in you
case the left offset from the <P>.

-- bruce (sqlwork.com)


| Dear All,
|
| How should I do if I want to get the left offset value of the
button
| 2 !!
|
| Thanks a lot !!
|
| code as following .....
|
| <HTML>
|
| <HEAD>
| <script language="javascript">
| function test(e)
| {
| alert (e.offsetLeft);
| }
| </script>
| </HEAD>
|
| <body>
| <form id="form1" method="post" runat="server">
| <P></P>
|
| <P> </P>
| <P></P>
|
| <P> <INPUT id="Button1" type="button" value="Button1" name="Button1"
| onclick="javascript:return test(this)"></P>
| <P> </P>
| <P>
| <TABLE width="500" align="center" border="1" ID="Table1">
| <TR>
| <TD style="WIDTH: 245px" width="245">test</TD>
| <TD width="500"><INPUT id="Button2" type="button" value="Button2"
| name="Button2" onclick="javascript:return test(this)"></TD>
| </TR>
| </TABLE>
| </P>
| </form>
| </body>
| </HTML>
|
|
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

No members online now.

Forum statistics

Threads
473,766
Messages
2,569,569
Members
45,042
Latest member
icassiem

Latest Threads

Top