私はaspxページを持っていて、そのページには以下のようなテーブルがあります
<table id="tbl1" runat="server">
<tr>
<td>
Hello world
</td>
</tr>
</table>
ここで、コード ビハインド (C#) からテーブルの位置 (x、y 座標) を取得したいと考えています。
入手する方法はありますか?
私はaspxページを持っていて、そのページには以下のようなテーブルがあります
<table id="tbl1" runat="server">
<tr>
<td>
Hello world
</td>
</tr>
</table>
ここで、コード ビハインド (C#) からテーブルの位置 (x、y 座標) を取得したいと考えています。
入手する方法はありますか?
これを試して
ASPX:
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="Default.aspx.cs" Inherits="_Default" %>
<!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 runat="server">
<title>Demo</title>
<script type="text/javascript" src="http://code.jquery.com/jquery-1.9.1.js"></script>
<script type="text/javascript">
function getPosition(elmID) {
var elmPosition = $("#"+elmID).position();
$("#<%= hdnPosition.ClientID%>").val(elmPosition.left + "," + elmPosition.top);
}
$(document).ready(function () {
$("#<%= btnGetPosition.ClientID %>").click(function () {
getPosition("tbl1");
});
});
</script>
</head>
<body>
<form id="frmMain" runat="server">
<table id="tbl1" runat="server">
<tr>
<td>
Hello world
</td>
</tr>
</table>
<asp:HiddenField ID="hdnPosition" runat="server" />
<asp:Button ID="btnGetPosition" runat="server" Text="Get position"
onclick="btnGetPosition_Click"/>
</form>
</body>
</html>
コードビハインド:
protected void btnGetPosition_Click(object sender, EventArgs e)
{
string position = hdnPosition.Value;
}