标签:动态 xhtml 需要 test plain index bsp color syntax
<
div
id
=
"testdiv"
>
<
ul
></
ul
>
</
div
>
jquery 1.7版以前使用live动态绑定事件
$(
"#testdiv ul li"
).live(
"click"
,
function
(){
});
$(
"#testdiv ul"
).on(
"click"
,
"li"
,
function
() {
//do something here
})
标签:动态 xhtml 需要 test plain index bsp color syntax
原文地址:http://www.cnblogs.com/shizhijie/p/6947460.html