谁能解决100份就是她的

rgbahnh 2003-06-09 03:28:23
<script language="JavaScript">
<!-- Begin
var description = new Array();
description[0] = "<font color=#102541 size=20> 大华和信.</font>";
description[1] = "<font color=#555555> 合作方式.</font>";
description[2] = "<font color=#FFFFFF>国内新闻 国际新闻.</font>";
description[3] = "<font color=#FFFFFF>广告概述 标志 海报 画册.</font>";
description[4] = "<font color=#FFFFFF>文字概述 作平展示.</font>";
description[5] = "<font color=#FFFFFF>文字概述 易拉卷 灯箱 和架 椅子架.</font>";
description[6] = "<font color=#FFFFFF>文字概述 翡翠人才 优秀团队 团队活动.</font>";
description[7] = "<font color=#FFFFFF>联系方式 在线服务 留言.</font>";

function MM_out() { //v3.0
return Words.innerHTML ="<font color=#555555>臣臣臣臣臣臣臣臣 合作方式.</font>";
}

// End -->


</script>

<td valign=bottom width="58">
<div align="center"><a onMouseOver=" Words.innerHTML =description[2];" href="file:///D|/%B4%F3%BB%AA/%C8%B7%C8%CF%B8%E5/xin/f0099.htm"><font size="2" color="#FFFFFF">新闻动态</font></a>
</div>
</td>
<td valign=bottom width="57">
<div align="center"><a onMouseOver=MM_out() ; href="file:///D|/%B4%F3%BB%AA/%C8%B7%C8%CF%B8%E5/xin/f0099.htm"><font size="2" color="#FFFFFF">平面广告</font></a>
</div>
</td>

点到相关的文字会在下一行出现一个说明文字,我要让点击说明文字能够链接到别的网页要怎么做呢?????
...全文
65 26 打赏 收藏 转发到动态 举报
写回复
用AI写文章
26 条回复
切换为时间正序
请发表友善的回复…
发表回复
iceman1981001 2003-06-09
  • 打赏
  • 举报
回复
用英文的文件试试看

href="file:///D|/%B4%F3%BB%AA/%C8%B7%C8%CF%B8%E5/xin/f0099.htm">平面广告</a>
zhaoweiwei 2003-06-09
  • 打赏
  • 举报
回复
//这样就解决了

<html>

<head>

<title>New Page 1</title>
</head>

<body>

<table border="0" width="19%">
<tr>
<td width="45%" onmouseover="hz.style.visibility='visible'" ,onmouseout="hz.style.visibility='hidden'"><b>新闻动态</b></td>
<td width="55%"></td>
</tr>
<tr>
<td width="45%"><b><span style="visibility: hidden" id="hz"><a href="javascript:void(0)" onmouseover="hz.style.visibility='visible'" onmouseout="hz.style.visibility='hidden'">合作方式</span></b></a></td>
<td width="55%"></td>
</tr>
</table>

</body>

</html>
rgbahnh 2003-06-09
  • 打赏
  • 举报
回复
我一移动开那个就没有了,根本就没有办法点到啊
zhaoweiwei 2003-06-09
  • 打赏
  • 举报
回复
你自己看看,我想点都点不到 啊???
什么意思!
ZeusLion 2003-06-09
  • 打赏
  • 举报
回复
<BODY bgcolor=#99999>
<script language="JavaScript">
<!-- Begin
var description = new Array();
description[0] = "<font color=#102541 size=20><a href='dhtx.htm'> 大华和信.</a></font>";
description[1] = "<font color=#555555> 合作方式.</font>";
description[2] = "<font color=#FFFFFF><a href=xw.htm>国内新闻 国际新闻.</a></font>";
description[3] = "<font color=#FFFFFF>广告概述 标志 海报 画册.</font>";
description[4] = "<font color=#FFFFFF>文字概述 作平展示.</font>";
description[5] = "<font color=#FFFFFF>文字概述 易拉卷 灯箱 和架 椅子架.</font>";
description[6] = "<font color=#FFFFFF>文字概述 翡翠人才 优秀团队 团队活动.</font>";
description[7] = "<font color=#FFFFFF>联系方式 在线服务 留言.</font>";

function MM_out() { //v3.0
return Words.innerHTML ="<font color=#555555>臣臣臣臣臣臣臣臣 合作方式.</font>";
}

// End -->


</script>
<table>
<tr>
<td valign=bottom width="58">
<div align="center"><a onMouseOver=" Words.innerHTML =description[2];" href="file:///D|/%B4%F3%BB%AA/%C8%B7%C8%CF%B8%E5/xin/f0099.htm">新闻动态</a>
</div></td>
<td valign=bottom width="57">
<div align="center"><a onMouseOver=MM_out() ; href="file:///D|/%B4%F3%BB%AA/%C8%B7%C8%CF%B8%E5/xin/f0099.htm">平面广告</a>
</div></td>
</tr>
</table>
<div id=Words></div>
点到相关的文字会在下一行出现一个说明文字,我要让点击说明文字能够链接到别的网页要怎么做呢?????
==============================================================
你首先得有一个元素名字叫Words阿
rgbahnh 2003-06-09
  • 打赏
  • 举报
回复
你自己看看,我想点都点不到 啊
rgbahnh 2003-06-09
  • 打赏
  • 举报
回复
没有人能够解决吗
zhaoweiwei 2003-06-09
  • 打赏
  • 举报
回复
其实这样就成了
<html>

<head>

<title>New Page 1</title>
</head>

<body>

<table border="0" width="19%">
<tr>
<td width="45%" onmouseover="hz.style.visibility='visible'" onmouseout="hz.style.visibility='hidden'"><b>新闻动态</b></td>
<td width="55%"></td>
</tr>
<tr>
<td width="45%"><b><span style="visibility: hidden" id="hz"><a href="javascript:void(0)">合作方式</span></b></a></td>
<td width="55%"></td>
</tr>
</table>

</body>

</html>
zhaoweiwei 2003-06-09
  • 打赏
  • 举报
回复
//这样可以了吗?
<html>

<head>

<title>New Page 1</title>
<script language="JavaScript">
<!-- Begin
var description = new Array();
description[0] = "<font color=#102541 size=10><a href='dhtx.htm'>大华和信.</a></font>";
description[1] = "<font color=#555555> 合作方式.</font>";
description[2] = "<font color=#FFFFFF>国内新闻 国际新闻.</font>";
description[3] = "<font color=#FFFFFF>广告概述 标志 海报 画册.</font>";
description[4] = "<font color=#FFFFFF>文字概述 作平展示.</font>";
description[5] = "<font color=#FFFFFF>文字概述 易拉卷 灯箱 和架 椅子架.</font>";
description[6] = "<font color=#FFFFFF>文字概述 翡翠人才 优秀团队 团队活动.</font>";
description[7] = "<font color=#FFFFFF>联系方式 在线服务 留言.</font>";

function MM_out() { //v3.0
return Words.innerHTML ="<font color=#555555><a href='sddddd'>合作方式</a></font>";
}

// End -->


</script>


</head>

<body>
<table>
<tr>
<td valign=bottom width="58" id="Words">
<div align="center"><a onMouseOver=" Words.innerHTML =description[0];" href="file:///D|/%B4%F3%BB%AA/%C8%B7%C8%CF%B8%E5/xin/f0099.htm">
<font size="2">新闻动态</font></a>
</div>
</td>
<td valign=bottom width="57">
<div align="center"><a onMouseOver=MM_out() ; href="file:///D|/%B4%F3%BB%AA/%C8%B7%C8%CF%B8%E5/xin/f0099.htm">
<font size="2">平面广告</font></a>
</div>
</td>

</body>


</html>
rgbahnh 2003-06-09
  • 打赏
  • 举报
回复
我移动到页面上的一个链接比如"新闻动态",下一行出现"合作方式",然后我点击合作方式,要求可以连接到下一个页面啊,
aleccheung 2003-06-09
  • 打赏
  • 举报
回复
别人没明白你想干什么?把你得想要的功能都说清楚点好吗 ?
rgbahnh 2003-06-09
  • 打赏
  • 举报
回复
有没有人来帮忙啊,很急得,
rgbahnh 2003-06-09
  • 打赏
  • 举报
回复
你这样写就等于是在<a <a> </a> > 这样的语句了啊,怎么能够运行呢
rgbahnh 2003-06-09
  • 打赏
  • 举报
回复
就是你的不行啊,不跳出微软的调试程序,description[1] = "<font color=#555555><a href='hzfs.htm'>合作方式.</a></font>";
<a onMouseOver="Words.innerHTML =description[2];"
你在这个里面加入链接是不行的啊,我是IE5的,不知道是不是这个问题
fason 2003-06-09
  • 打赏
  • 举报
回复
那你有没有试过我写的代码??完全可以啊
rgbahnh 2003-06-09
  • 打赏
  • 举报
回复
我移动到新闻动态上,下一行会显示出大华和信 然后我点击大华和信,链接到下个页面
fason 2003-06-09
  • 打赏
  • 举报
回复
我搞不懂楼主的意思,程序是测试过了可以的,是你的要求不明确,点新闻动态时都转向了,怎么显示?不懂你的意思<a href=** target="_blank">,除非弹出新的窗口
rgbahnh 2003-06-09
  • 打赏
  • 举报
回复
你那样写的话,我点击新闻动态就不会出现大华和信了,
rgbahnh 2003-06-09
  • 打赏
  • 举报
回复
还是没有解决,无法点击链接
rgbahnh 2003-06-09
  • 打赏
  • 举报
回复
轩辕你什么意思??
你那样不是点上去都没有出现链接吗!!!!
加载更多回复(6)

87,915

社区成员

发帖
与我相关
我的任务
社区描述
Web 开发 JavaScript
社区管理员
  • JavaScript
  • 无·法
加入社区
  • 近7日
  • 近30日
  • 至今
社区公告
暂无公告

试试用AI创作助手写篇文章吧