我想在 jQuery 中运行函数,但是在它完成后更改/重新定义这个函数。
HTML
<div id="test">TEST</div>
jQuery
function yes() {
alert('yes');
// I dont know how, but i mean something like :
//this.fn.function yes(){
// alert('no');
//};
};
$('#test').click(function () {
yes();
});