appletexample3.htm

来自「平时用来学习和编程使用的」· HTM 代码 · 共 19 行

HTM
19
字号
<html>
    <head>
	      <title>Applet Example</title>
        <script>            
            function getMessageFromApplet(sMessage) {   
                alert("Applet says: " + sMessage);                                
            }
        </script>
    </head>
    <body>
        <p>This page defines a function that is called by the applet once
        it is loaded.</p>                
        <object type="application/x-java-applet" code="ExampleApplet3.class"
                width="400" height="50" id="ExampleApplet">
            <param name="mayscript" value="true" />         
        </object>
    </body>
</html>

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?