HTMLページを含むiframeがあります。クリックした親アイテムのクラスを取得したいと思います。
これは私のiframです:iframe内でクリックしたタグの親を取得
<iframe src="//example.com" id="frame" ></iframe>
これはCSSです:
$(document).ready(function() {
var iframe = document.getElementById('frame');
var innerDoc = iframe.contentDocument || iframe.contentWindow.document.body;
$(innerDoc).on('click', function(e) {
var thisID = ((e.target).id);
alert(thisID);
alert(innerDoc.getElementById(thisID));
$(thisID).click(function() {
var Allclassnames = $(thisID).parent();
console.log(Allclassnames);
});
});
});
が、それは項目がそれを修正するonly.howクリックして返します。
#frame{ width:380px; height:420px;}
これは私のスクリプトです?
デモ:DEMO
NOTE
:これらは私が私のHTMLは、私のウェブサイトと同じドメインの内部にあることを確信しているこのreason.butのために働いていないDEMO
以下同じdomain.maybeです。 ありがとうございます。
はい、同じドメインにあります –