利用jQuery找tag時,如 $("#test")
id為test的tag需已存在html
但當要找的tag還未加入html裡時,就會找不到test
可以利用此法
var panel=jQuery("<div id='test'>");
$('#test',panel)
});
一次設定多個屬性及事件
滿方便的...不錯
$('#test')
.text("this is div") //屬性
.click(function(){ //方法
alert($(this).text());
});
//一行來設定屬性就是
$('#test').text("this is div").html("").css("");
//看起來怪怪的,不過還挺簡潔的
沒有留言:
張貼留言