Используя Javascript, вы можете сделать следующее, используя window.onload
:
var iframes= parent.document.getElementsByTagName("iframe")[0];
console.log(iframes.getAttribute("data-id"))
Ниже приведена демонстрационная версия:
<html>
<head>
<title>sample</title>
<script type="text/javascript">
window.onload = function() {
var iframes= parent.document.getElementsByTagName("iframe")[0];
alert(iframes.getAttribute("data-id"))
}
</script>
</head>
<body>
<iframe id='iframe_test' data-id='foo' src='http://example.com'></iframe>
</body>
</html>