Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
使用 jQuery(或纯 JavaScript)我希望定位以哈希 ( ) 开头的#所有链接,这意味着所有链接都跳转到当前页面上的某个位置。
#
然后我想将类分配in-page-link给这些链接。
in-page-link
使用以 selector 开头的属性。
$("a[href^='#']").addClass("in-page-link");
$('a[href^="#"]').each(function(){ $(this).addClass('in-page-link'); });