淡入 jquery 加载调用
我有一个关于 jquery 的非常基本的问题。但是我不知道该怎么做,所以这就是为什么我来这里寻求你的帮助。这是我的代码:
编辑: Link
如您所见,我想将 page.html 加载到名为 #target 的 div 中。我还想做但不起作用的是让 page.html 在加载时淡入。正确的方法是什么?
此致
I have a really basic question about jquery. However I don't know how to this so that's why i'm here looking for your help. This is my code:
Edit: <a href="javascript:$('#target').load('page.html').fadeIn('1000');">Link</a>
As you see i want to load page.html into a div called #target. What I also want to do wich doesen't work is to make page.html fade in when it loads. What's the right way to that?
Best Regards
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
首先,您应该将 Javascript 代码放在元素本身之外。这做起来相当简单。它使您的 HTML 和 Javascript 更容易理解,并最终允许更有组织的代码。首先,为您的
a
元素指定一个id
:然后在
script
标记中进行调用:编辑 要发表评论,是的,您可以在
a
标记中使用 URL,然后使用this.href
。First, you should put your Javascript code outside the element itself. This is fairly simple to do. It makes your HTML and Javascript much more easily comprehensible and ultimately allows much more organised code. First, give your
a
element anid
:Then make your call in a
script
tag:Edit To comment, yes you can use a URL in the
a
tag and then usethis.href
.尝试
加载有一个完整的处理程序(参见文档)
Try
load has a complete handler (see doc)