使用提交按钮创建事件
我需要一些帮助来编码我的项目。你能帮我完成我的项目吗?我需要创建 .click
事件来锚定,代码如下:
$("form").submit(function() {
if ($("input:first").val() == "something") {
// anchor tag should be clicked and input should find submitted target.
}
}
很快我想创建搜索表单,它创建单击事件并查找输入的目标。
感谢您提前提供的帮助!
I need some help on coding my project. Can you please help me to finish my project. I need to create .click
event to anchor, the code will be as follows:
$("form").submit(function() {
if ($("input:first").val() == "something") {
// anchor tag should be clicked and input should find submitted target.
}
}
Shortly I want to create search form which creates click event and finds entered target.
Thank you for your assistance in advance!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果我正确理解您的问题,您将尝试根据表单中输入的内容跳转到页面中的锚点。
如果有多个选项,您可以使用
switch
:If I understand your question correctly, you’re trying to jump to an anchor in the page based on what’s entered in the form.
If there are multiple options, you could use
switch
:假设您想要覆盖默认的提交行为并单击锚点:
Assuming you want to override the default submit-behavior and click an anchor instead: