HTML विंडो नाम गुण विंडो का नाम लौटाता है और संशोधित करता है।
सिंटैक्स
निम्नलिखित वाक्य रचना है -
1. रिटर्निंग नाम
window.name
2. नाम जोड़ना
window.name=”text”
आइए HTML विंडो नाम संपत्ति का एक उदाहरण देखें -
उदाहरण
<!DOCTYPE html>
<html>
<style>
body {
color: #000;
height: 100vh;
background-color: #8BC6EC;
background-image: linear-gradient(135deg, #8BC6EC 0%, #9599E2 100%);
text-align: center;
}
.btn {
background: #db133a;
border: none;
height: 2rem;
border-radius: 2px;
width: 40%;
display: block;
color: #fff;
outline: none;
cursor: pointer;
margin: 1rem auto;
}
.show {
font-size: 1.2rem;
}
</style>
<body>
<h1>HTML Window name Property Demo</h1>
<button onclick="display()" class="btn">Show window name</button>
<div class="show"></div>
<script>
function display() {
document.querySelector('.show').innerHTML = 'The current window name is: ' + window.name;
}
</script>
</body>
</html> आउटपुट

वर्तमान विंडो का नाम प्रदर्शित करने के लिए "विंडो का नाम दिखाएं" बटन पर क्लिक करें -
