(1) jQuery的Id选择器: $("#btnShow")
(2) 事件绑定函数 bind()
$("#btnAdd").bind("click", function(event) { $("#divMsg").show(); });
(3) 显示和隐藏函数. show()和hide()
(4) 修改元素内部html的函数html()
$("#btnChange").bind("click", function(event) { $("#divMsg").html("Hello World, too!"); });