我们如何在框架中获取选定的单元格值?我通过单击链接调用 iframe。在 Iframe 中,我想获取所选单元格的属性值。
<script>
function main(container) {
if (!mxClient.isBrowserSupported()) {
mxUtils.error('Browser is not supported!', 200, false);
}
else {
var graph = new mxGraph(container);
var cell = graph.getSelectionCell();
}
</script>
<body onload="main(window.parent.document.getElementById('graphContainer'))">
<form id="form1" runat="server">
</form>
</body>