hashchange问题:加载javascript
我有两个页面,我在其中一个 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
从评论中我了解到真正的问题是事件处理(on-rollover)而不是样式。
为此,您可以使用
.live()
或.delegate()
方法。例子
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