舊版 HTML4 :
1 2 3 | < applet codebase = "Hello/World" code = "HelloWorld.class" height = "500" width = "500" > < param name = "Number" value = "1" /> </ applet > |
新版 HTML5 (測試階段):
1 2 3 | < object type = "application/x-java-applet" codebase = "Hello/World" code = "HelloWorld.class" height = "500" width = "500" > < param name = "Number" value = "9" /> </ object > |
Jar 檔案嵌入
舊版 HTML4 :
1 2 3 | < applet archive = "Hello/World" code = "HelloWorld.jar" height = "500" width = "500" > < param name = "Number" value = "8" /> </ applet > |
新版 HTML5 (測試階段):
1 2 3 | < object type = "application/x-java-applet" archive = "Hello/World" code = "HelloWorld.jar" height = "500" width = "500" > < param name = "Number" value = "7" /> </ object > |
沒有留言:
張貼留言