iframe问题 如何在父页面中显示子页面的onmouse时候显示的图片

问题描述

a.aspx<scriptlanguage="javascript">functionShowImg(){x=event.x;y=event.y;document.getElementById('d1').style.display='';document.getElementById('d1').style.top=y+10;document.getElementById('d1').style.left=x+10;}functionCloseImg(){document.getElementById('d1').style.display='none';}</script></head><body><divid='d1'style='display:none;position:absolute;'><imgsrc='http://www.link-e.net/ttr_logo.gif'border='0'width=400height=500/></div><ahref="#"onmouseover="ShowImg();"onmouseout="CloseImg();">dfdfdfdfdfdfdf</a>b.aspx<HTML><HEAD></HEAD><iframewidth=100height=300src="a.aspx"></iframe></HTML>注:iframe里的高度和图片的高度是固定的不能改变问题就出在我把a.aspxiframe到b.aspx里面的时候鼠标放到文字上就出现图片,但这个图片只显示半截,请问在b.aspxiframea.aspx的时候,如何让a.aspx里面的onmouse图片全显示呢?请教高手

解决方案

解决方案二:
请教高手帮忙啊谢谢了啊
解决方案三:
是不是你的图片太大了,图片的实际高宽比显示的大
解决方案四:
<divid='d1'style='display:none;position:absolute;'><imgsrc='http://www.link-e.net/ttr_logo.gif'border='0'oncreate="if(this.width>400)width=400;if(this.height>500)this.height=500;"/></div><ahref="#"onmouseover="ShowImg();"onmouseout="CloseImg();">dfdfdfdfdfdfdf</a>
解决方案五:
mark
解决方案六:
恩知道是iframe太小图片太大,还能实现么

时间: 2024-10-21 08:26:19

iframe问题 如何在父页面中显示子页面的onmouse时候显示的图片的相关文章

js父页面中使用子页面的方法_javascript技巧

iframe是非常常用的一个html元素,如果在父页面中使用子页面的方法应该怎么写呢,下面就做一下简单的介绍.一.父页面代码 <html> <head> <meta charset=" gb2312"> <title>父页面</title> <script type="text/javascript"> function parentFunction() { alert('function in

Jquery调用iframe父页面中的元素及方法_javascript技巧

一.在iframe中查找父页面元素的方法: $('#id', window.parent.document) 二.在iframe中调用父页面中定义的方法和变量: parent.method parent.value 三.实例 父页面: <%@ Page Language="C#" AutoEventWireup="true" CodeBehind="Default.aspx.cs" Inherits="IframeDemo._De

JQuery iframe页面操作父页面中的元素与方法

今天写项目遇到了iframe,所以总结了下. 1)在iframe中查找父页面元素的方法:  代码如下 复制代码 $('#id', window.parent.document) 2)在iframe中调用父页面中定义的方法和变量: parent.method parent.value 3)实例 父页面:  代码如下 复制代码 <%@ Page Language="C#" AutoEventWireup="true" CodeBehind="Defaul

Asp c# 如何在子页面中调用父页面中的方法或执行父页面中某个按键(Button)中的代码

问题描述 各位高手,有个问题求助,我搞了一天,也从网上查询了许久,找不到办法,请帮帮我.事由:我使用vs2010c#,ie8建网站,现有父页面A和子页面B.A页面(父页面):在A页面(A.aspx)有一个GridView网格Gridview_A,Gridview_A通过A页面上的按键Button_A_Click将表Table_A(Table_A放在Session["Table_A"]中)绑定,A页面(A.aspx)还有一个调用子页面B(B.aspx)的按键Button_AcallB_C

javascript-JS中父页面的调用子页面的子页面,有办法吗?

问题描述 JS中父页面的调用子页面的子页面,有办法吗? 我在一个页面调用这个方法(方法是子页面的子页面的)obj_frm["frm_"+CallID].ReceiveData(Data),报错对象不支持"ReceiveData"属性或方法.应该怎么修改呢? 解决方案 没有大神知道吗?T^T 解决方案二: 你的意思是说子页面全部都是frame? 那么直接一级级下去就行了啊 解决方案三: js 刷新子页面----------------------

js-怎么在父页面修改二级子页面元素样式

问题描述 怎么在父页面修改二级子页面元素样式 我在父页面iframe了一个子页面.在子页面又Iframe了一个子页面,怎么在第一个父页面里修改最后一个子页面里元素的样式啊? 解决方案 iframe和父页,window.open打开页面之间的引用 解决方案二: ? String path = request.getContextPath(); String basePath = request.getScheme()+"://"+request.getServerName()+"

浏览器-myeclipse中的Jsp页面的ajax怎么一直实现不了,哪位大神给看看。。。

问题描述 myeclipse中的Jsp页面的ajax怎么一直实现不了,哪位大神给看看... function ajax(){ //声明一个空对象 用来装入xmlhttprequest对象 var xmlhttpreq=null; // 首先判断浏览器的使用情况,然后给XMLHttpRequest对象赋值,进行实例化 if (window.ActiveXObject){ xmlhttpreq = new ActiveObject("Microsoft.XMLHTTP"); }else i

跨域取子页面的dom-父页面操作子页面的dom,通过子页面的URL怎么做

问题描述 父页面操作子页面的dom,通过子页面的URL怎么做 appcan.ready(function() { titHeight = $('#header').offset().height; content = $('#reply').offset().height; var url = "http://192.168.1.195/jc6/wfAndroidHtml/knowledge2.html?UserCode=xiaoyujie%24356a192b7913b04c54574d18c

一个关于Iframe调用父页面中的脚本的问题

问题描述 父页面的脚本是通过<scriptsrc="http://domain/include.js"type="text/javascript"/>引入的假如include.js里有一个函数helloworld()请问在iframe的页面里如何才能调用该函数呢?注:不能使用execScript因为firefox不支持 解决方案 解决方案二:window.parent.helloworld();//这样行不?解决方案三:肯定不行啊,要不就不问了:(解决方