gpt4 book ai didi

javascript - href标识的区别

转载 作者:行者123 更新时间:2023-11-28 13:47:34 25 4
gpt4 key购买 nike

任何人都可以告诉我,这三件事有什么不同。

if ( document.location.href.indexOf('#Work') > -1 ) {
$('#elementID').animate({"left": "250"}, "slow");
}


 if ( document.location.href.indexOf('#Work') > 0 ) {
$('#elementID').animate({"left": "250"}, "slow");
}


if ( document.location.href.indexOf('#Work') != -1 ) {
$('#elementID').animate({"left": "250"}, "slow");
}

最佳答案

“IndexOf”方法将返回在其父级中找到字符串的位置的整数。在本例中,document.location.href

中的“#Work”
  1. "> -1"当找到字符串时返回。

  2. "> 0"当在第一个字符后找到字符串时返回

  3. "!= -1"当找到字符串时返回,无论位置如何(与 #1 相同)

顺便说一句 - 这是核心 Javascript,而不是 Jquery。

关于javascript - href标识的区别,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13116491/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com