HTML DOM id ਪ੍ਰਤੀਯੋਗਿਤਾ
ਵਿਆਖਿਆ ਅਤੇ ਵਰਤੋਂ
id ਪ੍ਰਤੀਯੋਗਿਤਾ ਸੈੱਟ ਕੀਤੀ ਜਾ ਸਕਦੀ ਹੈ ਜਾਂ ਵਾਪਸ ਕੀਤੀ ਜਾ ਸਕਦੀ ਹੈ。
ਵਿਧਾਨ
iframeObject.id=id
ਮਾਮਲਾ
ਇਸ ਮਾਮਲੇ ਵਿੱਚ ਦੋ ਤਰੀਕੇ ਦੇ ਕੇ iframe ਦੇ ਆਈਡੀ ਨੂੰ ਵਾਪਸ ਕਰਨਾ ਦਿਖਾਇਆ ਗਿਆ ਹੈ:
<html> <body> <iframe src="frame_a.htm" id="frame1"></iframe> <br /><br /> <script type="text/javascript"> document.write("The iframe's id: "); document.write(document.getElementsByTagName("iframe")[0].id
); document.write("<br /><br />"); document.write("An alternate way: "); document.write("<br />"); document.write("The iframe's id: "); document.write(document.getElementById("frame1").id
); </script> </body> </html>