admin管理员组

文章数量:1350125

I have a Ajax call and inside the ajax call's success function there a onclick.I need to pass a Guid value to a another function ,it shows me -1 (here i put alert)

Ajax call

 $.each(msg._allProd, function(index, item) {
    debugger;
    //item.PrdId is Guid like 00000000-0000-0000-0000-000000000001
    contect = contect + '<div class="item"><a class="item link" onclick="PrdOnClick(item.PrdId)"></div>';
 });

And then pass that value to another function

function PrdOnClick(id) {
    alert(id); // this alert shows me -1
}

I have a Ajax call and inside the ajax call's success function there a onclick.I need to pass a Guid value to a another function ,it shows me -1 (here i put alert)

Ajax call

 $.each(msg._allProd, function(index, item) {
    debugger;
    //item.PrdId is Guid like 00000000-0000-0000-0000-000000000001
    contect = contect + '<div class="item"><a class="item link" onclick="PrdOnClick(item.PrdId)"></div>';
 });

And then pass that value to another function

function PrdOnClick(id) {
    alert(id); // this alert shows me -1
}
Share Improve this question edited Apr 16, 2015 at 18:15 Satpal 133k13 gold badges167 silver badges170 bronze badges asked Apr 16, 2015 at 17:25 AlexAlex 2333 silver badges15 bronze badges 2
  • item.PrdId is from some object in C# right? – JunaidKirkire Commented Apr 16, 2015 at 17:28
  • Well what I wanted to ask was if item.PrdId is some JS object or not. If yes, then you need to look at the answers below. In case it is a C# object, then you need to use proper C# server controls. – JunaidKirkire Commented Apr 16, 2015 at 17:33
Add a ment  | 

3 Answers 3

Reset to default 5

As item.PrdId is a variable, you need to use concatenate it properly.

contect = contect + '<div class="item"><a class="item link" onclick="PrdOnClick(\'' + item.PrdId + '\')"></div>';

if your item.PrdId value is correct, this should solve your problem

contect = contect + '<div class="item"><a class="item link" onclick="PrdOnClick(' + item.PrdId + ')"></div>';

you just forgot to put quotes correct

You have to put PrdID into the onclick call like this:

`onclick="PrdOnClick(' + item.PrdId + ')"></div>'

本文标签: jqueryTrouble passing Guid to a Javascript function via onclick attributeStack Overflow