1. <script>
    2. /* 需要写在本子上的 */
    3. // function $ajax({
    4. // success
    5. // }){
    6. // var res = "hello world"
    7. // success(res);
    8. // }
    9. // $ajax({
    10. // success:res=>{
    11. // console.log(res)
    12. // }
    13. // })
    14. function $ajax(success){
    15. var a = "hello world"
    16. success(a);
    17. }
    18. $ajax(res=>{
    19. console.log(res)
    20. })
    21. </script>