0

JQuery Vector Map を使用して svg ファイルをロードしていますが、次のようになっています

Uncaught TypeError: Cannot read property 'width' of undefined

実際問題は、svg ファイルから読み取れないことです。誰かが $('#africa').vectorMap();それを読むために何をする必要があるか知っていますか.

<html>
            <head>
                    <title>Testing Map</title>
                    <script src="jquery.vector-map/jquery-1.6.min.js" type="text/javascript"></script>
                    <link href="jquery.vector-map/jquery.vector-map.css" media="screen" rel="stylesheet" type="text/css" />
                    <script src="jquery.vector-map/jquery.vector-map.js" type="text/javascript"></script>
                    <script  type="text/javascript">
                            $(function()
                            {
                                    $('#africa').vectorMap();
                            });
                    </script>
            </head>
            <body>
                 <div id="africa">
                    <embed src="africa.svg"/>
                 </div>
            </body>
    </html>
4

1 に答える 1