JavaScript操作属性

操作属性

document .getElementByid("div1");根据ID来获取;
document .之后getElementByid("div1") .title = "你真美" ;
整个文档加载完之后执行的一个匿名函数;
function 匿名函数;
window .onload = function() {} 写在《script》标签里面;
通过id来查找文档中的唯一id
document getElementByid ("link") .href = "https://www.baidu.com",(跳转到网页)
还可以 例如 : var oA = document .getElentByid("link");
oA .href = "https://www.baidu.com"
oA .title = "百度搜索";
还可以读出来 : alert (oA.id) alert (oA.title);
对象 . 方法 ; 对象 . 属性 ;

js换肤



 
   
    Document
   

   





作业




  
  Document
  







你可能感兴趣的:(JavaScript操作属性)