बैकग्राउंड इमेज को JavaScript में सेट करने के लिए, बैकग्राउंड इमेज का इस्तेमाल करें संपत्ति। यह आपको पृष्ठभूमि छवि सेट करने की अनुमति देता है।
उदाहरण
जावास्क्रिप्ट के साथ पृष्ठभूमि छवि कैसे सेट करें, यह जानने के लिए आप निम्न कोड चलाने का प्रयास कर सकते हैं -
<!DOCTYPE html> <html> <body> <button onclick="display()">Click to Set background image</button> <script> function display() { document.body.style.backgroundImage = "url('https://www.tutorialspoint.com/html5/images/html5-mini-logo.jpg')"; } </script> </body> </html>