jquery页面刷新自调用
第一种:
$(document).ready(function () {
$('.vjs-control-bar').css({
"bottom": "-1.8rem"
})
})
第二种:
$(function () {
$('.vjs-control-bar').css({
"bottom": "-1.8rem"
})
});
第一种:
$(document).ready(function () {
$('.vjs-control-bar').css({
"bottom": "-1.8rem"
})
})
第二种:
$(function () {
$('.vjs-control-bar').css({
"bottom": "-1.8rem"
})
});