我想用其他代码替换一个代码,点击新代码后得到警报,但不要在我的代码中工作警报。如何解决?
演示:http: //jsfiddle.net/9Ggsn/
html:
<select>
<option>select 1</option>
<option>select 2</option>
<option>select 3</option>
</select>
<div class="dfg"><a href="#">Test</a></div>
jQuery:
$('select').on('change', function(){
//alert('ook');
$('.dfg a').replaceWith('<a href="#" class="pon">Link</a>')
});
$('.pon').on('click', 'a', function(){
alert('ook');
});