使用图像执行js功能

时间:2017-12-01 16:02:40

标签: javascript html image

您好我试图通过网络关闭我的Raspberry pi 我做了一个关闭图标,打开一个模态 带有关机和重启图像
我想让这两个图像执行一个Cgi脚本 Off.cgi和reb.cgi点击 这是我试过的代码

var xmlhttp; xmlhttp=new XMLHttpRequest();
function shutdown(){
   xmlhttp.open("GET","cgi-bin/off.cgi",true);
   xmlhttp.send();    
}                                                                      
function reboot(){
   xmlhttp.open("GET","cgi-bin/reb.cgi",true);
   xmlhttp.send();     
}
<!-- Modal content -->     
<div class="modal-content">
<span class="close">&times;</span> 
<h1>Do you Really want to Turn off or Reboot?</h1>
<p><img src="shutdown.png" height="150" width="150" onclick="shutdown()" /><img src="reboot.png" height="150" width="150" onclick ="reboot()"/></p>

这里的任何想法是它不会执行js函数

0 个答案:

没有答案