当用户点击“登录”链接时,我需要在对话框中打开login.aspx
页面。
我看过jQuery UI Dialog,但它看起来无法打开给定URL的整个页面?
你们有什么技巧可以使用吗?
答案 0 :(得分:3)
你可以创建一个<iframe>
和.dialog()
来获得你想要的东西,简单来说就是这么简单。 Elijah Manor has a full post with code on how to do this
这是一个快速版本:
$('<iframe src="login.aspx" />').dialog({
title: 'Login',
width: 600,
height: 400,
modal: true,
}).width(570).height(370); //give it a bit of padding
答案 1 :(得分:1)
使用<iframe>
。