asp.net中Ajax调用步骤

发布于 2025-01-08 09:56:53 字数 118 浏览 1 评论 0原文

我正在使用 C Sharp 语言开发 ASP.NET。我想在下拉菜单中使用ajax。当用户从下拉列表中选择一个项目时,必须向用户显示相关信息。

请告诉我在这种情况下使用ajax的步骤。

谢谢

i am working on asp.net using c sharp language. I want to use ajax on drop down. When user selects an item from drop down, the relative information must be shown to user.

Please tell me the steps to use ajax in this case.

Thanks

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

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

发布评论

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

评论(1

拥抱我好吗 2025-01-15 09:56:53

因此,假设您有一个下拉列表

<select id='drId'>...</select>

和一个将返回信息的操作,

public ActionResult ShowInfo(int v)
{
   // return info about object with key = v
   return Content("hi");
}

此脚本将处理下拉列表的更改客户端事件

<script>
$(function(){
$('#drId').change(function(){
$.post('<%=Url.Action("ShowInfo")%>',{ v:$(this).val() },function(result){
//do something with result;
alert(result);
});//end post

});//end change
});//end doc ready

//don't forget to include jQuery
</script>

so assuming you have a dropdown

<select id='drId'>...</select>

and an action that will return the info

public ActionResult ShowInfo(int v)
{
   // return info about object with key = v
   return Content("hi");
}

this script will handle the change client event of the dropdown

<script>
$(function(){
$('#drId').change(function(){
$.post('<%=Url.Action("ShowInfo")%>',{ v:$(this).val() },function(result){
//do something with result;
alert(result);
});//end post

});//end change
});//end doc ready

//don't forget to include jQuery
</script>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文