我在html网站上有一个按钮:
<input type="button" class="red" id="allClose" value="Close" onclick='change_pin ("1");'>
点击它调用java脚本funktion,打开一个php文件,Raspberry Pi的命令在给定的GPIO状态下更改。
<script>
function change_pin ( num ) {
//send the num number to gpio.php for changes
var request = new XMLHttpRequest();
request.open( "GET" , "gpio.php?num=" + num, true);
request.send(null);
return 0;
};
</script>
它在桌面浏览器(Edge,Opera)上运行良好,但在WP8.1上的桌面IE和Webbrowser上它可以工作,但只能运行一次。当我第二次按下按钮时,什么也没发生。我做错了什么?