应该这样做:
当用户点击p
代码时,它会查看iframe
id="jo"
的{{1}},并弹出alert
消息框,其中包含div
的内容在id="message-indicator"
。
然而,这不起作用。
这是我的代码:
$("p").click(function ()
{
$('#jo').each(function()
{
alert($('#message-indicator',
this.contentWindow.document || this.contentDocument).text());
});
});