我在iframe中有一個普通的html表格,我想從父頁面訪問它(是的,他們在域和服務器上) 我試過每一個種類:jQuery:點擊位於iframe中的表格
$("#Iframe").contents().find("#mytable td");
我沒有感覺到它檢測到我的表格單元格或表格。 我想確實要做一個事件。
$("#mytable td")
.mousedown(function()
{
isMouseDown = true;
$(this).toggleClass("highlighted");
isHighlighted = $(this).hasClass("highlighted");
return false;
})
.mouseover(function() {
if (isMouseDown) {
$(this).toggleClass("highlighted", isHighlighted);
}
})
這個事件在單個頁面上完美地工作在css風格的鏈接上,但是在使用iframe時應該怎麼做呢?在iframe中檢測我的表格的正確句子是什麼?
'parent.opener.document.getElementById( 「street1」 ).value = street1;'你可以像這樣設置iframe的父元素 – dreamweiver 2013-05-09 14:03:05
很多建議[here](http://stackoverflow.com/questions/364952/jquery-javascript-accessing-contents-of-an-iframe ?rq = 1) – DOK 2013-05-09 14:21:26