gpt4 book ai didi

jquery - 使用 ajax 和 jquery 发送 div id

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

如何使用相同的脚本发送我的 div 的 ID!就像当用户发送表单时,我也想发送 de div 的 id。我想为我的图片上传系统制作评论系统。

$(function() {
$(".submit").click(function() {
var name = $("#name").val();
var email = $("#email").val();
var comment = $("#comment").val();
var dataString = 'name='+ name + '&email=' + email + '&comment=' + comment;

if( comment=='')
{
alert('Please Give Valide Details');
}
else
{
$("#flash").show();
$("#flash").fadeIn(400).html('<img src="ajax-loader.gif" align="absmiddle">&nbsp;<span class="loading">Loading Comment...</span>');
$.ajax({
type: "POST",
url: "piccommentajax.php?id=<? echo $idcom ?>",
data: dataString,
cache: false,
success: function(html){

$("ol#show").append(html);
$("ol#show li:first").fadeIn("slow");
document.getElementById('comment').value='';
$("#name").focus();

$("#flash").hide();
}
});
}
return false;
});
});

最佳答案

根据您的代码,您会这样做:

datastring += '&divid=' + $('...').attr("id");

您为 ... 输入的内容会产生重大影响。我们无法从问题中得知。

尽管猜测?试试:$(this).closest("div").attr("id"); 这会让你得到最接近点击提交按钮的 封闭 div。

关于jquery - 使用 ajax 和 jquery 发送 div id,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14991757/

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