goto.js 886 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. // axios
  2. // axios.get('http://172.105.205.52:8000/courses?tag_string=(2)')
  3. // .then(function (response) {
  4. // console.log(response);
  5. // });
  6. // axios.post('/user', {
  7. // firstName: 'Fred',
  8. // lastName: 'Flintstone'
  9. // }).then(function (response) {
  10. // console.log(response);
  11. // })
  12. // jquery
  13. $(document).ready(function(){
  14. $.ajax('http://172.105.205.52:8000/tags', {
  15. type: 'GET', // http method
  16. headers: {'Access-Control-Allow-Origin': '*'},
  17. success: function (res) {
  18. var a = res;
  19. console.log(res);
  20. },
  21. error: function (err) {
  22. console.log(err);
  23. }
  24. });
  25. $("#submit").bind('click',function(){
  26. var idiom=$("#idiom").val();
  27. });
  28. });
  29. // $.get("date-time.php", function(data){
  30. // console.log(res);
  31. // });
  32. $(".slider1").slick({
  33. dots:true,
  34. dotsClass:'slick-dots',
  35. speed:1000,
  36. });