hashchange问​​题:加载javascript

发布于 2024-11-25 04:27:23 字数 194 浏览 0 评论 0原文

我有两个页面,我在其中一个 div 上使用 hashchange,

这是我的问题,我在 div 内有一个按钮,可以替换当前页面上的 div。我已经使用 jquery 对按钮进行了一些事件处理,但是在 hashchange 之后,它们看起来像普通按钮,而 javascript 没有应用于这些按钮,我该如何解决这个问题?

任何努力表示赞赏,谢谢

I have two pages and I am using hashchange on one of the divs

here is my problem I have a button inside the div that replaces the div on current page. I have used some event handling on my buttons using jquery, but after hashchange they look like normal buttons the javascript doesnot get applied to those buttons, how could I solve this problem?

any efforts appreciated thanks

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

我很坚强 2024-12-02 04:27:23

从评论中我了解到真正的问题是事件处理(on-rollover)而不是样式。

为此,您可以使用 .live().delegate() 方法。

例子

$('buttonselector').live('mousenter', function(){
  // do the fadein here
}).live('mouseleave',function(){
  // do the fadeout here
});

From the comment i undestand that the real issue is with the event handling (on-rollover) and not the styling..

For that you can use the .live() or .delegate() methods.

example

$('buttonselector').live('mousenter', function(){
  // do the fadein here
}).live('mouseleave',function(){
  // do the fadeout here
});
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文