我试图根据屏幕分辨率通过更改hspace属性来更改小程序的水平位置。以下Javascript似乎没有任何改变:

<html>
<body>

<applet
    id="clientApplet"
    archive="client.jar"
    code="Client.class"
    width="500" height="530"
    hspace="100">
</applet>

<br />

<script type="text/javascript">
    var leftMargin = (screen.width-500)/2;

    document.getElementById("clientApplet").setAttribute(hspace, leftMargin);

    window.location.reload()
</script>

</body>
</html>


谁能告诉我我要去哪里错了?

最佳答案

hspace必须为字符串:

07-26 01:20