如何清除这个函数的Timeout?
这是我的代码,我试过但没有用。
我能怎么做 ?
..................................................... ..................................................... ..................................................... …………
<form id="fid">
<input type="text" id="input_type" onkeypress="stop()" onkeyup="run()"/>
</form>
<p id="myplace"></p>
<script>
function run() {
$('#myplace').hide();
setTimeout(function(){
$.ajax
(
{
url: 'xx.php',
type: 'POST',
data: $('#fid').serialize(),
cache: false,
success: function (data) {
$('#myplace').show();
$('#myplace').html(data);
}
}
)
}, 3000);
}
function stop() {
clearTimeout();
}
</script>