我正在尝试使用下面的代码解析HTML文件,我有一个html文件传递到core.Element.parse,然后呈现给视图:
this.newElement = core.Element.parse(html);
this.view.getContent().append(this.newElement);
html文件看起来像:
<div>
<html>
<head>
<style>
#map-canvas {
width: 250px;
height: 250px;
}
</style>
<script src="https://maps.googleapis.com/maps/api/js"></script>
<script>
function initialize() {
var mapCanvas = document.getElementById('map-canvas');
var mapOptions = {
center: new google.maps.LatLng(53.4333, -7.9500),
zoom: 8,
mapTypeId: google.maps.MapTypeId.ROADMAP
}
var map = new google.maps.Map(mapCanvas, mapOptions)
}
google.maps.event.addDomListener(window, 'load', initialize);
</script>
</head>
<body>
<div id="map-canvas"></div>
</body>
</html>
</div>
有人可以告诉我为什么html和css被解析但javascript没有?当我检查元素时,html在那里和css但是没有javascript的迹象并且没有任何内容出现。
提前感谢您的帮助!