How to use hidden iframe connect to the server in GreaseMonky
问题 First,I created a hidden frame like this: var oHiddenFrame = null; if(oHiddenFrame == null){ oHiddenFrame = document.createElement("iframe"); oHiddenFrame.name = "hiddenFrame"; oHiddenFrame.id = "hiddenFrame"; oHiddenFrame.style.height = "0px"; oHiddenFrame.style.width = "0px"; oHiddenFrame.style.position = "absolute"; oHiddenFrame.style.visbility = "hidden"; document.body.appendChild(oHiddenFrame); } Then,I add a event to the button like this: var fnLocation = function(){ frames["hiddenFrame