?? p50objecthello.htm
字號:
<HTML>
<HEAD>
<SCRIPT LANGUAGE="JavaScript">
function ordinary_say_hello()
{
document.write("Hello.");
}
function special_print_name()
{
document.write("My name is: " + this.name);
}
var thing = new Object;
thing.name = "Fred";
thing.say_hello = ordinary_say_hello;
thing.print_name = special_print_name;
thing.say_hello();
thing.print_name();
</SCRIPT>
</HEAD>
<BODY>
</BODY>
</HTML>
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -