如何使用jQuery在CSS中设置背景图像?
要使用jQuery设置背景图像,请使用jQuery css() 方法。
示例
使用 background-image 属性向网页添加背景图像。
<!DOCTYPE html> <html> <head> <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script> <script> $(document).ready(function(){ $(".bg").css("background-image", "url('/css/images/css.jpg')"); }); </script> </head> <body class="bg"> </body> </html>
广告