$(document).ready(function(){
$(".a").click(function(){
var a = (function(){
alert(a); // Line No: 4
},another());
});
});
function another(){
alert('Now Click B'); // Alert 1
$(".b").unbind('click');
var r = 0;
$(".b").click(function(){
alert('B Clicked'); // Alert 2
return r;
});
}
<p class="a">Click A First</p>
<p class="b">Click B</p>
警报1和警报2正常工作但是 第4行不起作用。
任何建议???
答案 0 :(得分:0)
答案 1 :(得分:0)
您需要调用它:
}(),another());
//^-----here