किसी दस्तावेज़ में हाइपरलिंक के लिए डिफ़ॉल्ट लक्ष्य निर्धारित करने के लिए <आधार> तत्व की लक्ष्य विशेषता का उपयोग किया जाता है।
निम्नलिखित वाक्य रचना है -
<base target="_blank|_self|_parent|_top| frame">
यहाँ, _blank का उपयोग लिंक किए गए दस्तावेज़ को नई विंडो या टैब में खोलने के लिए किया जाता है, _स्वयं लिंक किए गए दस्तावेज़ को उसी फ़्रेम में खोलता है जिस पर क्लिक किया गया था, _parent दस्तावेज़ को पैरेंट फ़्रेम में खोलता है, _top लिंक किए गए दस्तावेज़ को पूरे शरीर में खोलता है विंडो, फ़्रेम लिंक किए गए दस्तावेज़ को नामित फ़्रेम में खोलता है।
आइए अब <आधार> तत्व की लक्ष्य विशेषता को लागू करने के लिए एक उदाहरण देखें -
उदाहरण
<!DOCTYPE html> <html> <head> <base href="https://www.example.com/tutorials/" target="_blank"> </head> <body> <h2>Tutorials List</h2>Java Tutorial
(This will act as https://www.example.com/tutorials/java.html)
jQuery Tutorial
(This will act as https://www.example.com/tutorials/jquery.html)
Blockchain Tutorial
(This will act as https://www.example.com/tutorials/blockchain.html)
Python Tutorial
(This will act as https://www.example.com/tutorials/python.html)
</body> </html>
यह निम्नलिखित आउटपुट का उत्पादन करेगा। जब आप नीचे दिए गए किसी भी लिंक पर क्लिक करेंगे, तो यह एक नई विंडो में खुलेगा क्योंकि यह _blank -
सेट है।
ऊपर, हमने आधार URL सेट किया है -
<base href="https://www.example.com/tutorials/" target="_blank">
सभी URL अब एक नई विंडो में खुलेंगे क्योंकि हमने
target="_blank"