- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在更新一个使用 jquery-1.4.3.min.js 的旧项目。这干扰了我正在开发的一些新内容,因此我必须将其替换为最新版本,现在我收到 Uncaught TypeError: Cannot read property 'substr' of undefined。
我已经研究这个问题有一段时间了,但我很困惑。非常感谢任何帮助!
来自的线路
$link = $('a[hash=#' + $inview + ']').parent().attr('id').substr(4);
如果需要的话,这里是全部内容
$(window).scroll(function() {
$inview = $('section:in-viewport header').parent().attr('id');
if ($('a[hash=#' + $inview + ']') !== null) {
$link = $('a[hash=#' + $inview + ']').parent().attr('id').substr(4);
}
if ($link != $nCurrentActive && scrolling == 1) {
$nav.removeClass('active');
offMenu($nCurrentActive);
$nCurrentActive = $link;
$('#nav-'+$nCurrentActive).addClass('active');
onScrollMenu($nCurrentActive);
}
});
最佳答案
您的代码中有多个错误。仅修复其中一个是没有用的。
var
来声明局部变量。这是一个你绝不能犯的大错误。$nCurrentActive
、$nav
、scrolling
)来保存状态。不要那样做。是的,我知道这很方便。只是不要这样做。$
为不包含 jQuery 对象的变量添加前缀($inview
、$link
)。不要这样做。null
进行比较。这是没有用的,因为 jQuery 调用永远会导致null
。substr()
而不检查该函数实际上返回了某些内容 ($(...).attr("id").substr(...)
)。 这就是您看到的错误的根源。更好:
$(window).scroll(function() {
var sectionId, sectionLinkId, navId;
sectionId = $('section:in-viewport header').parent().attr('id');
if (!sectionId) return;
sectionLinkId = $('a[hash=#' + sectionId + ']').parent().attr('id');
if (!sectionLinkId) return;
navId = sectionLinkId.substr(4);
offMenu(navId);
$("*[id^=nav]").removeClass("active").filter("#nav+" + navId).addClass("active");
onScrollMenu(navId);
});
其他说明:
$(".navLink")
) 比 $("*[id^=nav]") 方式更好
)。$nCurrentActive
这样的全局变量。使用 $(".navLink.active")
,这就是类的用途。$('section:in-viewport a.primarySectionLink')
来选择主部分链接,不是更好吗?if
语句的一种方法是在明确不满足函数的前提条件时尽早返回(如上所示)。offMenu()
和 onScrollMenu()
。让菜单自己处理窗口滚动事件。为什么要在这两个函数之间建立依赖关系?关于javascript - 未捕获的类型错误 : Cannot read property 'substr' of undefined - old Jquery,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27074982/
我只是有一个更琐碎的问题。 为什么undefined == undefined 返回true,而undefined >= undefined 为false? undefined 等于 undefine
用PHP 7.2编写套接字服务器。根据Firefox 60中的“网络”选项卡,服务器的一些HTTP响应的第一行随机变为undefined undefined undefined。因此,我尝试记录套接字
在 JavaScript 中这是真的: undefined == undefined 但这是错误的: undefined <= undefined 起初我以为<=运算符包含第一个,但我猜它试图将其转换
在回答这个问题 (Difference between [Object, Object] and Array(2)) 时,我在 JavaScript 数组中遇到了一些我以前不知道的东西(具有讽刺意味的
来自https://developer.mozilla.org/en/docs/Web/JavaScript/Reference/Global_Objects/Array/of , Note: thi
我正在运行 PHP 脚本并继续收到如下错误: Notice: Undefined variable: my_variable_name in C:\wamp\www\mypath\index.php
我正在运行 PHP 脚本并继续收到如下错误: Notice: Undefined variable: my_variable_name in C:\wamp\www\mypath\index.php
当我添加 到我的 PrimeFaces Mobile 页面,然后我在服务器日志中收到以下警告 WARNING: JSF1064: Unable to find or serve resource, u
我正在运行 PHP 脚本并继续收到如下错误: Notice: Undefined variable: my_variable_name in C:\wamp\www\mypath\index.php
我正在运行 PHP 脚本并继续收到如下错误: Notice: Undefined variable: my_variable_name in C:\wamp\www\mypath\index.php
我正在运行 PHP 脚本并继续收到如下错误: Notice: Undefined variable: my_variable_name in C:\wamp\www\mypath\index.php
我正在运行 PHP 脚本并继续收到如下错误: Notice: Undefined variable: my_variable_name in C:\wamp\www\mypath\index.php
我正在运行 PHP 脚本并继续收到如下错误: Notice: Undefined variable: my_variable_name in C:\wamp\www\mypath\index.php
我正在运行 PHP 脚本并继续收到如下错误: Notice: Undefined variable: my_variable_name in C:\wamp\www\mypath\index.php
我正在运行 PHP 脚本并继续收到如下错误: Notice: Undefined variable: my_variable_name in C:\wamp\www\mypath\index.php
我正在运行 PHP 脚本并继续收到如下错误: Notice: Undefined variable: my_variable_name in C:\wamp\www\mypath\index.php
我正在运行 PHP 脚本并继续收到如下错误: Notice: Undefined variable: my_variable_name in C:\wamp\www\mypath\index.php
我正在运行 PHP 脚本并继续收到如下错误: Notice: Undefined variable: my_variable_name in C:\wamp\www\mypath\index.php
我正在运行 PHP 脚本并继续收到如下错误: Notice: Undefined variable: my_variable_name in C:\wamp\www\mypath\index.php
我正在运行 PHP 脚本并继续收到如下错误: Notice: Undefined variable: my_variable_name in C:\wamp\www\mypath\index.php
我是一名优秀的程序员,十分优秀!