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

时间:2017-07-12 11:05:36

标签: javascript jquery html ajax

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

1 个答案:

答案 0 :(得分:4)

截至目前,生成的链接将低于此值,id将被忽略。

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

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

"<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);