jquery页面刷新自调用

第一种:
$(document).ready(function () {
  $('.vjs-control-bar').css({
    "bottom": "-1.8rem"
  })
})

第二种:
$(function () {
  $('.vjs-control-bar').css({
    "bottom": "-1.8rem"
  })
});

  





猜你喜欢

转载自www.cnblogs.com/lljun/p/11591876.html