1234567891011121314151617181920212223 |
- $('.sec05-moblie-container').slick({
- arrows: false,
- slidesToShow: 1,
- slidesToScroll: 1,
- infinite: false,
- centerMode: true,
- });
- console.log(1);
- $(document).ready(function () {
- function get_data(){
- $.ajax({
- method: "GET",
- // url:"https://api.ptt.cx:8228/collection/"+userid+"",
- url:"https://api.ptt.cx:8228/collection/U176663ce100ebb1f4c404d48749decb1_test_000_000_000",
- dataType: "json",
- })
- .done(function (msg) {
- console.log(msg);
- });
- }
- get_data();
- });
|