lang="en">
charset="utf-8">
documenttitle>
head>
id="div1">
div>
var div1 = document.getelementbyid('div1');
div1.index = 1 ;
alert(div1.id);
alert(div1["id"]);
/*獲取元素行間的屬性 (專門操作行間樣式的)*/
div1.setattribute("index","3");
alert(div1.getattribute("id"));
/*給元素設定新增屬性 鍵值對 */
alert("下面就刪除了");
div1.removeattribute("index");
alert(div1.getattribute("index"));
/*可以操作行間的自定義屬性
可以獲取src,href等的相對位址.
*/console.log(img.getattribute("src"));
if(img.getattribute("src") == "../../s.png")else
script>
body>
html>
讀 總結 8 屬性
屬性看起來像字段,但本質上是方法。使用屬性保持了較好的資料封裝,它使型別的資料字段不會被公開,從而確保了物件的狀態永遠不被破壞。如下 public sealed class employee set set訪問器 public intage set age value 如下 class progra...
dom元素屬性操作(常規屬性操作)
注 原生js操作樣式,只能操作元素的行內樣式 1.操作類名稱 console.log btnlist.classname console.log btnlist.name console.log btnlist.id console.log btnlist.style console.log btn...
8 非同步操作
對於遊戲開發而言,經常使用到非同步相關操作,因此在使用moduleframework之前應該提供乙個非同步操作的類。以後相關的非同步操作均繼承這個類 asyncoperation 先貼出 ifndef async operation h define async operation h includ...