mainCustom.html 940 Bytes
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35
<!DOCTYPE html>
<html lang="en">

<head>
    <meta charset="UTF-8">
    <title>แก้ไขกราฟ</title>

    <script src="../../asset/js/canvasjs/jquery-1.11.1.min.js"></script>

    <script>
        $(document).ready(function () {
            // $('#btn1').click(function () {
            //     alert('hello');
            // });
            var frame1 = window.frames[1].document;
            // var frame2 = document.getElementById('frame2');
            console.log(frame1);
            // console.log(frame2);
            var children = frame1.children;
            children = children[0].children;
            // children = children[1].children;
            console.log(children[1]);


        });
    </script>
</head>
<frameset cols="30%,70%" border="10" bordercolor="#343a40">
    <frame src="./editChart.html" id="frame1"> </frame>
    <frame src="./showChart.html" id="frame2"></frame>
</frameset>

</script>

</html>