日期:2014-05-16 浏览次数:20481 次
<script>
function xxx() {
var abc = '<li><h3 class="geegee">3</h3></li>';
var acc = '<li><h3 class="geegee">4</h3></li>';
output = $(abc + acc);
$('#category').append(output);
}
</script>
<script>
$(document).ready(function() {
$(".geegee").click(function() {
alert("a");
});
});
</script>
<body onload="xxx();">
<ul id="category" class="product_category">
<li><h3 class="geegee">1</h3></li>
<li><h3 class="geegee">2</h3></li>
</ul>
</div>
</body>
$(".geegee").click(function() {
alert("a");
});
$("#category").delegate(".geegee","click",function() {
alert("a");
});