如题

解决方案 »

  1.   

    <a href="main.index"><img src="pic/logo.gif" alt="Click Here To Enter" border="0"></a>
    这样是把图片放在<a>里面
    如果要加超链接在图片的某一个部位的话,那就要做map了
      

  2.   

    楼主没说清问题,不是已经嵌入链接了吗?或者用map热区
      

  3.   

    感觉楼主说的嵌入链接的意思是像Flash一样的
    图片是不可能的
      

  4.   

    <html>
    <body>
    <img src="baiyang.jpg" width="230" height="176" border="0" ismap usemap="#baiyang.jpg">
    <map name="baiyang.jpg">
    <area href="form.html" shape="rect" coords="3,122,73,143" alt="Got To the feedback form">
    <area href="contact.html" shape="rect" coords="109,123,199,142" alt="Go to the contact page">
    <area href="main.html" shape="rect" coords="1,2.72,17" alt="Go to the Home page">
    <area href="likes.html" shape="rect" coords="155,0,199,18" alt="Go to the Links page" target="_top">
    <area href="mailto:[email protected]" shape="poly" coords="28,22,24,68,46,114,84,111,99,56,86,13" alt="Email" target="_self" OnMouseOver="window.status='OnMouseOver'; return true" OnMouseOut="window.status='OnMouseOut'; return true">
    <area NOHREF shape="circle" coords="0,20,42" alt="Email">
    </map>
    <body>
      

  5.   

    web中的话,可以把图片放入<a></a>中。
    或者可以应用事件。当鼠标移动至图片上时改变鼠标外观,点击时触发事件。在代码里做联接!
      

  6.   

    对不起没说清楚,我是希望将超链接在图片的任意一个位置,可能不只一个超链接
    不知道你们说的map是什么,没接触过,能不能详细说说呢?
      

  7.   

    建议你把页面放入dreamweaver里编辑下,使用图片热区,超简单的
      

  8.   

    谢谢smin1994(smin1994),刚才没看到
    现在好好研究一下
      

  9.   

    把图片  <img /> 使用 <A HREF=''></A>  括起来或者 用热区 还有救市 在  <img>中加  onclick="window.open('','_self')"有很多种方法的
      

  10.   

    <a href="main.index"><img src="pic/logo.gif" alt="Click Here To Enter" border="0"></a>
    这些都是脚本里编写的超连接
    如果你想在WEB控件来用的话 有一些控件比方说:LinkButton,ImageButton,HyperLink等等 之类的 他们都可以加载图片而且一点就可以超链接
      

  11.   

    Dreamweaver里面有一个热点,,就可以解决你的问题了,呵呵
      

  12.   

    如果是WEB控件的话,可以使用this.Attrbute.Add("onclick",要执行的javascript代码或其它一系列的);
      

  13.   

    用“热点”吧,搜索一下,这个问题不是.net的范畴
      

  14.   

    <A href="url"><img src="图片路径"></A>