无法识别的表达式:a [href ^ =#]

时间:2016-03-31 19:05:32

标签: jquery html jquery-selectors

我正在尝试制作一个简单的" scrollTo元素"功能

控制台显示错误: 语法错误,无法识别的表达式: a [href ^ =#] 代码

的[href ^ =#]

根据this question的回复,我将哈希符号包装成双引号,但现在控制台显示意外的标记ILLEGAL

请解释我做错了什么以及如何解决。

这是我的代码:



$(document).on('click', 'a[href^=#]', function () {
        $('html, body').animate({ scrollTop:  $('section[data-target="'+this.hash.slice(1)+'"]').offset().top }, 1000 ); 
        return false;
    });

menu {
  background-color: #1abc9c;
  height: 50px;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  margin: 0;
  padding: 0;
}


menu ul li {
  display: inline-block;
  padding: 0 15px;
}

menu ul li a {
  color: #333;
  text-decoration: none;
}


section {
  height: 300px;
  padding: 60px 0 0 45px;
}

.one {
  background-color: #3498db;
}

.two {
  background-color: #e74c3c;
}

.three {
  background-color: #f39c12;
}

.four {
  background-color: #2c3e50;
}

<menu>
  <ul>
    <li><a href="#one">One</a></li>
    <li><a href="#two">Two</a></li>
    <li><a href="#three">Three</a></li>
    <li><a href="#four">Four</a></li>
  </ul>
</menu>

<section class="one" data-target="one">Section One</section>
<section class="two" data-target="two">Section Two</section>
<section class="three" data-target="three">Section Three</section>
<section class="four" data-target="four">Section Four</section>
&#13;
&#13;
&#13;

and the same in JSFiddle

3 个答案:

答案 0 :(得分:11)

由于#是jquery的元字符,您必须使用引号来包装它,否则您必须使用\\来转义它,

$(document).on('click', 'a[href^="#"]', function () {

$(document).on('click', 'a[href^=\\#]', function () {

DEMO

答案 1 :(得分:1)

尝试更改为

  

一个[HREF * = \\#]

这项工作对我来说:)

答案 2 :(得分:1)

由我,使用 jquery 3.5.1

  • a[href*=#] → 返回错误
  • a[href*="#"] → 工作正常