• js中window.location无反应的解决

    普通类
    • 支持
    • 批判
    • 提问
    • 解释
    • 补充
    • 删除
    • 问题描述

    按钮触发操作,js中使用了window.location=“”,之后换成window.location.href="",也是点击之后没反应

    源代码:

    function backToIndex(){
        
        window.location.href="../fullTextSearch.jsp";
    }

            <input type="image" src="/images/fullTextSearch.png"  onclick="javascript:backToIndex();" height="25"></input>
     

    解决办法:

            <input type="image" src="/images/fullTextSearch.png"  onclick="javascript:backToIndex();return false;" height="25"></input>

    • 标签:
    • input
    • image
    • images
    • fulltextsearch.png
    • src
    • onclick
    • backtoindex
    • type
    • javascript
    • height
  • 加入的知识群:
    学习元评论 (0条)

    评论为空
    聪明如你,不妨在这 发表你的看法与心得 ~



    登录之后可以发表学习元评论
      
暂无内容~~
顶部