私は2つのクラスでjqueryセレクターオプションを使用しているasp.netでディスカッションパネルを開発しています
$("#plblDisAgreeProblem", "plblDisAgreeComment").click(function(){
var str = {
problemID: $("#problemID").val(),
empID : $("#empID").val(),
commentID : -1
}
$.ajax({
type: "GET",
url: "<%= Url.Action("GetStatus", "Discussion") %>",
data: str,
error: function(msg){
alert("error2" + msg);
},
success: function (msg) {
var out = msg.split("<br/>");
if (out[1] == "DisAgree: True")
{
alert("You are already disagree to this problem.");
}
else
{
}
});
})
divのクラスが「plblDisAgreeProblem」の場合、JSonのcommentIDは-1である必要があり、divのクラスが「plblDisAgreeComment」の場合、JSonのcommentIDはthis.idである必要がありますが、どうすればこれを行うことができますか?
私を助けてください