当用户使用 JQuery 访问哈希链接 (#something) 时,如何运行 JavaScript 函数?
我在 http://example.com/app
有一个 webb 应用程序,如果用户正在访问 http://example/app#add-item<,我想显示一个表单/代码>。
有什么方法可以使用 jQuery 脚本来添加此功能吗?
我当前的 jQuery 脚本已经具有如下结构:
$(document).ready(
function() {
$('#search').keyup(
function() { ... }
);
}
)
How can I show a form using someting like this:
$(document).ready(
function() {
$('#search').keyup(
function() { ... }
);
$('#add-item').visit( // .visit probably doesn't exist
function() { content.innerHTML = myForm; }
);
}
)
I have a webb application at http://example.com/app
and I would like to show a form if the user is visiting http://example/app#add-item
.
Is there any way I can use a jQuery script to add this functionallity?
My current jQuery script already has a structure like this:
$(document).ready(
function() {
$('#search').keyup(
function() { ... }
);
}
)
How can I show a form using someting like this:
$(document).ready(
function() {
$('#search').keyup(
function() { ... }
);
$('#add-item').visit( // .visit probably doesn't exist
function() { content.innerHTML = myForm; }
);
}
)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
这是我做的事情:
Here is something I do:
可能能够使用
hashchange
事件,如 http:// /benalman.com/projects/jquery-hashchange-plugin/。Might be able to use the
hashchange
event, as shown at http://benalman.com/projects/jquery-hashchange-plugin/.我假设你有一个 id 为“content”的元素,你想在其中显示表单。
I assume you have a element with id "content" where you want to display the form.