0
클릭하면 대화 상자가 열리는 테이블 행이 있습니다. 테이블 행의 클래스는 "관련"또는 "비 연관"입니다. 대화 상자의 단추를 만들려고하지만 클릭 한 행의 클래스에 따라 달라집니다.jquery 대화 상자 버튼을 기반으로 다른 기능
$('#opps tr').click(function(){
var thisClass = $(this).attr('class');
$('#oppData').dialog({
width: dWidth,
height:dHeight,
modal:true,
buttons: {
//if thisClass == unassociated
"Submit":function(){ //do stuff }
// if thisClass == associated
"Do Other stuff":function(){}
}
});
});
어떻게하면됩니까?