jQUery fadeIn 基于 url?
假设我传递了 url,example.php?mode=select&ID=1#age
是否可以根据 url 添加 jquery fadeIn?
该网址将位于另一个页面上,当用户单击它时,将加载一个页面,因此提交的年龄应该淡入。
如果这不可能,还有其他方法吗?
let say i pass url, example.php?mode=select&ID=1#age
is it possible to add jquery fadeIn based on url?
this url will be on another page, when user click it, a page will load and hence the age filed should be fade in.
if this not possible, is there any other way?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以检查是否存在
location.hash
设置document.ready
,如果是这样,调用.fadeIn()< /code>
在该元素上,如下所示:
例如,如果您的 URL 是
....#age
,则该内容会在id="age" 元素。
You can check for the if there's a
location.hash
set ondocument.ready
and if so, call.fadeIn()
on that element, like this:So for example if your URL was
....#age
, this would fade in theid="age"
element.我已经用这样的 URL 做了类似的事情:
http://site.com/page/view/ #219
然而,可能是更有效的方法。用于 ID 类似于“#f111”的链接
I've done something similiar with a URL like this:
http://site.com/page/view/#219
probably more efficient ways, however. used on links with an ID like "#f111"