嗨我想添加特定的HTML行到特定的地方與JavaScript代碼。使用javascript添加html
<ion-header>
<ion-navbar>
<ion-title>Map</ion-title>
</ion-navbar>
<script src='https://api.mapbox.com/mapbox-gl-js/v0.40.0/mapbox-gl.js'></script>
<link href='https://api.mapbox.com/mapbox-gl-js/v0.40.0/mapbox-gl.css' rel='stylesheet' />
</ion-header>
<ion-content padding>
<!--<div id="map" style="width: 100%; height: 100%"></div>--> <!--Add this line to here with js-->
</ion-content>
我試過document.getelementbyid.inner/outerhtml
和document.write
但是搞不清楚。
帖子你嘗試過什麼,即使它沒有工作。 –
javascript是區分大小寫的,所以很可能'document.getElementById('elementid')。innerHTML' – Icepickle
如果你真的使用了'document.getelementbyid',你會收到控制檯錯誤。檢查[** getElementById **](https://developer.mozilla.org/en-US/docs/Web/API/Document/getElementById)的文檔以及類似的文章,併發布不適用於[* *最小,完整和可驗證的示例**](https://stackoverflow.com/help/mcve) – Nope