SpreadJS Documentation > Sample Code > Sample Code for Cells > Getting the Active Cell Index |
アクティブセルのインデックスを取得できます。
次のサンプルコードは、アクティブセルの列および行インデックスを取得します。
JavaScript |
コードのコピー
|
---|---|
$("#button1").click(function () { var sheet = $("#ss").data("spread").getActiveSheet(); alert("Row index of an active cell : " + sheet.getActiveRowIndex() + "\n" + "Column index of an active cell: " + sheet.getActiveColumnIndex()); }); |