12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- // axios
- // axios.get('http://172.105.205.52:8000/courses?tag_string=(2)')
- // .then(function (response) {
- // console.log(response);
- // });
- // axios.post('/user', {
- // firstName: 'Fred',
- // lastName: 'Flintstone'
- // }).then(function (response) {
- // console.log(response);
- // })
- // jquery
- $(document).ready(function(){
- $.ajax('http://172.105.205.52:8000/tags', {
- type: 'GET', // http method
- headers: {'Access-Control-Allow-Origin': '*'},
- success: function (res) {
- var a = res;
- console.log(res);
- },
- error: function (err) {
- console.log(err);
- }
- });
- $("#submit").bind('click',function(){
- var idiom=$("#idiom").val();
- });
- });
- // $.get("date-time.php", function(data){
- // console.log(res);
- // });
- $(".slider1").slick({
- dots:true,
- dotsClass:'slick-dots',
- speed:1000,
-
- });
|