Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

How to remove body background Picture by jquery

2025-01-16 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Development >

Share

Shulou(Shulou.com)05/31 Report--

This article mainly explains "how jquery removes body background pictures". The explanation in the article is simple and clear, easy to learn and understand. Please follow the editor's train of thought to study and learn "how jquery removes body background pictures".

Methods to remove body background pictures: 1. Use css (), syntax "$(" body "). Css (" background "," none ");"; 2, use attr (), syntax "$(" body "). Attr (" style "," background:none ");".

The operating environment of this tutorial: windows7 system, jquery1.10.2 version, Dell G3 computer.

The method of removing body background Picture by jquery

Method 1: use css ()

The css () method returns or sets one or more style properties of the matching element.

Use the css () method to directly add a new value "none" to the background property and set the new style.

Body {background: url (img/2.png) no-repeat } $(document) .ready (function () {$("button") .click (function () {$("body") .css ("background", "none") }); remove the body background image

Method 2: use attr ()

Use attr () to set the style property, add the background:none style, and overwrite the old style.

Body {background: url (img/2.png) no-repeat } $(document) .ready (function () {$("button") .click (function () {$("body") .attr ("style", "background:none") }); remove the body background image

Thank you for your reading, the above is the content of "jquery how to remove body background pictures". After the study of this article, I believe you have a deeper understanding of how jquery removes body background pictures, and the specific use needs to be verified in practice. Here is, the editor will push for you more related knowledge points of the article, welcome to follow!

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Development

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report