是否有可能從onload方法返回值並將其賦值給JavaScript中的變量?我有多個值要從方法返回。我不想在HTML中打印(我知道如何打印),但我希望它分配給一個變量。從onload方法返回值並分配給變量
<html>
<div id="screenCapture" onload="screenProperties()">Screen properties</div>
<p id="sW"> <p>
</body>
<script type="text/javascript">
function screenProperties(){
sW=screen.width;
sH=screen.height;
saW=screen.availWidth;
saC=screen.colorDepth;
pixelDepth=screen.pixelDepth;
return "sw:"+sW+"sH:"+sH+"saW:"+saW+"saC:"+saC+"pixelDepth:"+pixelDepth;
}
alert(screenProperties());
</script>
</html>
是我的方法。在這裏,我想將返回的值賦給一個html側的變量。
誰投下來,你有沒有這方面的任何解決方案的人? – Sanjay