gpt4 book ai didi

javascript - 如何在 Jquery 中使用 href 标记和 URL 发送变量

转载 作者:行者123 更新时间:2023-11-30 09:33:13 25 4
gpt4 key购买 nike

for (var i in result) 
{
$('#tgt').append( "<li><a href='/UpdateStatusData/?id='"+result[i]+" >"+result[i]+"</a></li>");
}

在服务器端提取时,我在 ID 中收到空白。请帮助我以有效的方式将值传递给标签。 but I am getting the value when i inspect the element along with ="" as extra, you can see it in the image value:MULTINOMIAL, but when I click I could only see blank value in the server side

最佳答案

截至目前,生成的链接将在下方,因此,id 将被忽略。

<a href'/UpdateStatusData/?id=' 123> 

正确放置引号,以便将 url 括在引号中。

"<li><a href='/UpdateStatusData/?id="+result[i]+"'>"
//^Removes
//^added

使用更简洁的方法使用 jQuery 创建元素

var anchor = $('<a>', {
href : '/UpdateStatusData/?id='+result[i]
});
var li = $('<li>');

li.append(anchor);
$('#tgt').append(li);

关于javascript - 如何在 Jquery 中使用 href 标记和 URL 发送变量,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/45055925/

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