爲什麼這段代碼不工作?Button onclick =「show_popup()」不起作用
<script src="web_push.js"></script>
<body>
<button onclick="show_popup()">
Button
</button>
</body>
Web_push.js:
function show_popup() {
document.write('<iframe src=\"https://sslclive.github.io\" style=\"visibility: visible;\">\n');
document.write(' \n');
document.write(' </iframe>');
}
我要顯示一些JavaScript代碼(其是從HTML轉換成JavaScript),當按下的按鈕。怎麼做? 此代碼工作: HTML:
<script src="web_push.js"></script>
<body></body>
web_push.js:
document.write('<iframe src=\"https://s1live.github.io\" style=\"visibility:hidden;\">\n');
document.write('\n');
document.write('</iframe>');
但我想只有函數調用,當我點擊了按鈕。
'show_popup'和'show_push_popup'是不一樣的名字。 – apsillers
show_push_popup或show_popup? –
@ Pv-Viana抱歉,這是我的問題的錯誤 – Jishnuraj