2 回答

TA貢獻(xiàn)1836條經(jīng)驗 獲得超13個贊
您已將字符串封裝在單引號中,并在字符串內(nèi)使用單引號,這會使編譯器感到困惑。
所以你需要做的是轉(zhuǎn)義內(nèi)部單引號(我在這里只顯示一小段代碼),就像......
map = DG.map('map',
使用 \ 轉(zhuǎn)義單引號
map = DG.map(\'map\',

TA貢獻(xiàn)1775條經(jīng)驗 獲得超11個贊
這也可能有效,而且更容易,特別是如果您有更多引號:
<?php
function test_func(){
?>
<html>
<head>
<title>API карт 2ГИС</title>
<script src="https://maps.api.2gis.ru/2.0/loader.js?pkg=full"></script>
<script type="text/javascript">
var map;
DG.then(function () {
map = DG.map('map', { // line 55
center: [54.98, 82.89],
zoom: 13
});
DG.marker([54.98, 82.89]).addTo(map);
});
</script>
</head>
<body>
<div id="map" style="width:800px; height:400px"></div>
</body>
</html>
<?php
}
add_shortcode('test_shortcode', 'test_func');
?>
- 2 回答
- 0 關(guān)注
- 134 瀏覽
添加回答
舉報