标签:javascript
window.onload = function () {
//json中的function中的this只json对象本身
var json = { name: ‘abc‘, age: 12, fn: function () { return this.name; } };
alert(arr[0].Name);
}
js操作属性的方法
1.txt1.value=‘111‘;
2.txt1[‘value‘]=‘111‘;
第二种特别用法
function setText(name)
{
txt1[name]=‘111‘;
}
3.dom
getAttribute(名称)
setAttribute(名称,值)
removeAttribute(名称)
//阻止右键菜单
document.oncontextmenu = function () {
return false;
};
offset属性在运动框架中border的bug
clientX,clientY是可视窗口的坐标位置加scrollTop scrollLeft
标签:javascript
原文地址:http://codejson.blog.51cto.com/10074045/1910554