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
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>'
本文标签: jqueryTrouble passing Guid to a Javascript function via onclick attributeStack Overflow
版权声明:本文标题:jquery - Trouble passing Guid to a Javascript function via onclick attribute - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743870305a2553346.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论