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
3 Answers
Reset to default 5As 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>'