在我的HTML页面中,我有两个框架 - top_frame
& bottom_frame
。在top_frame
中有一个按钮<input type='button' id='test' value='Test' name='test'>
现在在bottom_frame
我想检测是否点击了top_frame
中的按钮。
现在通常没有框架,我可以这样做 -
$("#test").click(function(){
alert("You Clicked Me!!");
});
我如何在框架中做同样的事情?
答案 0 :(得分:3)
使用jquery选择器的第二个参数。它设定了背景......
$("#test", window.parent.frames[0].document).click(function(){
alert("You Clicked Me!!");
});