标签:on() 属性 hello 对象 text -- htm bsp function
//----------------------js代码-------------------
var user = {
name:‘tom‘,
say:function(){
console.log("hello");
}
}
//----------------------html页面代码-------------------
<script type="text/javascript" >
user.age = 25;//给user添加属性
user.sayHello = function(){//给user添加方法
console.log("hello other");
}
console.log(user[‘name‘]);
console.log(user[‘age‘]);
console.log(user[‘sayHello‘]);
</script>
标签:on() 属性 hello 对象 text -- htm bsp function
原文地址:https://www.cnblogs.com/kongxc/p/9054795.html