📄 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 + -