-
-
Notifications
You must be signed in to change notification settings - Fork 2.2k
Closed
Labels
bugSomething isn't workingSomething isn't working
Description
Describe the bug
My web page has a problem with same-page links (eg:<a href="#五five">五</a>) when developed with SvelteKit or when using the static files built by SvelteKit.
The issue manifests as follows: When clicking on a link on this page, if the link contains Chinese characters, it will scroll to the specified ID position the first time you click. However, if you manually scroll to another location and then click the same link again, it will not scroll.
This does not happen when the link is in English or numbers, and it also works properly with chinese chars when using other web proxies such as Nginx.
Reproduction
This is a demo, try click-scroll-click every link then u can easily find out the problem.
<nav>
<a href="#一">一</a>
<a href="#2">2</a>
<a href="#three">three</a>
<a href="#4">四</a>
<a href="#五five">五</a>
</nav>
<div class="scroll-container">
<div class="scroll-page" id="一"><a href="#一">一</a></div>
<div class="scroll-page" id="2">2</div>
<div class="scroll-page" id="three">three</div>
<div class="scroll-page" id="4"><a href="#4">四</a></div>
<div class="scroll-page" id="五five"><a href="#五">五</a></div>
</div>
<style>
a {
display: inline-block;
width: 50px;
text-decoration: none;
}
nav,
.scroll-container {
display: block;
margin: 0 auto;
text-align: center;
}
nav {
width: 339px;
padding: 5px;
border: 1px solid black;
}
.scroll-container {
width: 350px;
height: 200px;
overflow-y: scroll;
scroll-behavior: smooth;
}
.scroll-page {
display: flex;
align-items: center;
justify-content: center;
height: 100px;
font-size: 2em;
}
</style>Logs
No response
System Info
noneSeverity
serious, but I can work around it
Additional Information
No response
Metadata
Metadata
Assignees
Labels
bugSomething isn't workingSomething isn't working