这是我在 aspx 页面中的 div:
<div id="pop-up">
<button id="btnClose">Close</button>
<div id="mopopuptitle">
</div>
<table id="popuptable" cellspacing="15">
</table>
</div>
这是我的 js 代码:
$('td#' + parentElement).find('span.download_active').next().hover(function (e) {
topPos = e.pageY - ($('div#pop-up').height()) - 35;
leftPos = e.pageX - ($('div#pop-up').width()) - 30;
if (leftPos < 0) { leftPos = 10; }
GetAssociatedPeopleList(json_row.value.task_id);
$('div#pop-up').show().css('top', topPos).css('left', leftPos).appendTo('body');
$('#mopopuptitle').html('People who have taken up this Request');
$('#btnClose').button({ icons: { primary: "ui-icon-closethick" }, text: false })
.css({ width: '30px', height: '20px', position: 'absolute', right: -'25px', top: '-25px' })
.click($(this).close());
}, function() {
});
上面的代码有一些业务逻辑。不要为此烦恼..我需要的是当我单击关闭按钮时必须关闭弹出窗口..
我试过这些线..
$('div#pop-up').show().css('top', topPos).css('left', leftPos).appendTo('body');
$('#mopopuptitle').html('People who have taken up this Request');
$('#btnClose').button({ icons: { primary: "ui-icon-closethick" }, text: false })
.css({ width: '30px', height: '20px', position: 'absolute', right: -'25px', top: '-25px' })
.click($(this).close());
我可以通过尝试这段代码来实现..我应该改变什么?有没有其他选择?请帮帮我。。