gpt4 book ai didi

JQuery Ajax 调用 anchor 标签单击

转载 作者:行者123 更新时间:2023-12-03 23:03:35 25 4
gpt4 key购买 nike

我是 jQuery 新手,正在尝试通过示例来学习它在下面的示例中,我尝试使用 jQUery Ajax 在 anchor 标记单击事件上调用 servlet。我的页面中有多个 anchor 标记,并且我希望为每个 anchor 标记调用一个不同的 servlet。如果我使用像 $('#submit1').click 这样的 anchor 标记 id,如下例所示,它不起作用。但是,如果我将其替换为“a”,它就会为两个 anchor 标记调用相同的 servlet

<%@ page language="java" contentType="text/html; charset=UTF-8"
pageEncoding="ISO-8859-1"%>
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
<title>AJAX calls using Jquery in Servlet</title>
<script src="http://code.jquery.com/jquery-latest.js">
</script>
<script>
$(document).ready(function() {
$('#submit1').click(function(event) {
event.preventDefault();
var username=$('#user').val();
$.get('ActionServlet',{user:username},function(responseText) {
$('#welcometext').text(responseText);
});
});
});

$(document).ajaxStart(function(){
$('#content_progress').text("Loading...");
});

$(document).ajaxComplete(function(){
$('#content_progress').text("");
});

</script>
</head>
<body>
<form id="form1">
<h1>AJAX Demo using Jquery in JSP and Servlet</h1>
Enter your Name:
<input type="text" id="user"/><br>

<a name="submit1" href="#">View Profile</a>
<a name="submit2" href="#">Course Details</a>
<br/>
</form>
<div id="content_progress">
</div>
<div id="welcometext">
</div>
</body>
</html>

最佳答案

id-selector

更改name=submit1

id=submit1

<a id="submit1" href="#">View Profile</a>

attribute-equals-selector

如果您想通过名称通过a标签进行访问

更改$('#submit1').click(function(event) {

$('a[name="submit1"]').click(function(event) {

关于JQuery Ajax 调用 anchor 标签单击,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18426271/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com