Make a timer for registering to obtain the verification code. How to write it? Using window.timeout does not work on Android
PHPz2017-05-16 13:37:13
setTimeout
, setInterval
It can be used directly, refer to here: https://github.com/weex-plugi...
怪我咯2017-05-16 13:37:13
Use it like in js
<script>
setTimeout(function(){
//do some thing
},1000);
</script>