在控制台中打印“aaa”,但我无法通过单击 $(“#test”) 使其打印“bbb”。
我犯的那个错误?欢迎任何建议。谢谢你。对不起,我的英语不好。
主.js:
$("#load").click(function () {
$.post("second.php",function(data){
$('#result').html(data);
});
return false;
});
主.html:
...
<div id="result"></div>
...
second.php 返回:
<script>
$(document).ready(function() {
try
{
console.log("aaa");
$("#test").click(function () {
console.log("bbb");
return false;
});
}catch(e){}
});
</script>
<div>hello</div>
<a id="test" href="#">Test</a>