p50objecthello.htm
来自「javascript source code part2」· HTM 代码 · 共 29 行
HTM
29 行
<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 + =
减小字号Ctrl + -
显示快捷键?