gpt4 book ai didi

javascript - 如何在按钮的onclick功能中给出双引号?

转载 作者:行者123 更新时间:2023-11-29 15:22:37 27 4
gpt4 key购买 nike

给出双引号后显示错误

我在 infowindow 中使用 google map api 代码在单击按钮时在 iframe 中打开一个页面。

(function(marker, data) {
google.maps.event.addListener(marker, "click", function(e) {
infoWindow.setContent(data.description + "<br>" +
" <input type='button' class='class' value='More Details' onclick=@'document.getElementById('i').src = 'HomePage.aspx';' />" +
'<iframe id="i" style="height:50%;width:100%;"></iframe>');
infoWindow.open(map, marker);
});

最佳答案

我不确定您使用 @ 的奇怪语法是什么意思。

我希望你的代码是

infoWindow.setContent(data.description + '<br/>'+
'<input type="button" class="class" value="More Details" onclick="document.getElementById(\'i\').src = \'HomePage.aspx\'" />'+
'<iframe id="i" style="height:50%;width:100%;"></iframe>');

关于javascript - 如何在按钮的onclick功能中给出双引号?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42479723/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com