gpt4 book ai didi

Jquery 发布数据

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

我需要使用链接或图像插入/更新数据

我需要一个如何使用jquery调用post数据的代码!

< a href="some.asp"onClick="someaction, 要发送的值"> 链接

请帮忙

最佳答案

HTML

<a href="some.asp" class="upload">Link</a>
<input type="hidden" name="parameter" value="value-to-send" />

代码

$(function() {
$('.upload').click( function() {
$.post( $(this).attr('href'),
$(this).next('input[type=hidden]').serialize(),
function(data) { do something with returned data } );
return false; // cancel link default action
});
});

您可能还想查看 jQuery.com 上的文档,特别是关于 How jQuery Works 的部分.

关于Jquery 发布数据,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1617750/

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