1

我在我正在处理的这个表格的一侧有这张表,上面有超链接按钮。该按钮用于常见问题解答。我想要做的是当点击超链接按钮时,我想要一个小文本框,空浏览器,无论是最简单的方法。我启动了包含我的文本的页面,但它在我的屏幕左角打开。

这是我的代码:

<asp:LinkButton ID="lnkBttnPsswrdReset" runat="server" OnClientClick="openPopUp()">Password Reset Info</asp:LinkButton><br />

<%--function to open pop up window for password reset hyperlink button --%>
<script type="text/javascript">
    function openPopUp() {
        myWindow = window.open('', '', 'width=250,height=250')
        myWindow.document.write("<p>Please contact the operator to reset yopur password after IT department business hours</p>")
        myWindow
        myWindow.focus()
    }
</script>
4

3 回答 3

1

您的问题与上一个问题类似,例如以下链接。

在屏幕上居中弹出窗口?

接受的答案复制并粘贴在下面

尝试这个:

function popupwindow(url, title, w, h) {
var left = (screen.width/2)-(w/2);
var top = (screen.height/2)-(h/2);
return window.open(url, title, 'toolbar=no, location=no, directories=no, status=no,      menubar=no, scrollbars=no, resizable=no, copyhistory=no, width='+w+', height='+h+', top='+top+', left='+left);
} 
于 2013-10-03T19:16:06.417 回答
1

使用 Ajax comboBox ......效果很好

于 2013-10-15T18:06:02.753 回答
0

我会向您推荐像AlertifyJs这样的东西,它在各个方面都比讨厌的 Popup 好得多。

于 2013-10-03T19:17:07.090 回答