点击图片主页应该显示?

时间:2018-06-01 11:34:55

标签: javascript jquery

<html>
 </body>
  <div>
    <img class="floatLeftClass" id="float-Left-Class" src="images/logo.png" 
    width="100" height="50">
  </div>
 </body>
</html>   

  $(document).ready(function () {
        $('.floatLeftClass').click(function(){
            $(this).load( 'index.html' );
        });
    });

//这是点击此索引页面的图像,应显示我的脚本

2 个答案:

答案 0 :(得分:0)

试试这个:

$('.floatLeftClass').click(function(){
    location.href = 'index.html'; 
});

&#34;加载&#34; function是另一回事 - 它将请求的资源加载到一个元素中(如<div>或类似的东西)。

编辑:您可以在此处阅读.load()的文档:http://api.jquery.com/load/

答案 1 :(得分:0)

试试这个方法......

<div>
        <a href="https://www.w3.org/"> // Your page URL
            <img  id="img" src="imgname.png"  width="100" height="50">
        </a>
</div>