I know u can do something like this
$('#labelID').off('click'); // unbind click event
$('#labelID').no('click',func); bind it back with a func
but to rebind back in my case I don't have a function, because it is the default behavior of my form upload tags, like
<label>upload
<input type="file">
</label>