Telerik弹出层的问题
@{Html.Telerik().Window().Name("Window").Title(Resources.Global.Uom_New_Title).Dragga...
@{ Html.Telerik().Window()
.Name("Window")
.Title(Resources.Global.Uom_New_Title)
.Draggable(true)
.Scrollable(false)
.Resizable()
.Width(600)
.Height(200)
.Modal(true)
.Visible(false)
.Render();
}
@{ Html.Telerik().ScriptRegistrar()
.OnDocumentReady(
@<text> var windowElement = $("#Window");
$("#btnNew").bind("click",
function(e) {
windowElement.data("tWindow").center();
windowElement.data("tWindow").open();
windowElement.data("tWindow").redirectUrl("/Uom/New"); });
</text>
);
}
上面的代码是给btnNew按钮绑定了弹出层的事件 现在还有个按钮要怎么写来让弹出的层关掉呢 展开
.Name("Window")
.Title(Resources.Global.Uom_New_Title)
.Draggable(true)
.Scrollable(false)
.Resizable()
.Width(600)
.Height(200)
.Modal(true)
.Visible(false)
.Render();
}
@{ Html.Telerik().ScriptRegistrar()
.OnDocumentReady(
@<text> var windowElement = $("#Window");
$("#btnNew").bind("click",
function(e) {
windowElement.data("tWindow").center();
windowElement.data("tWindow").open();
windowElement.data("tWindow").redirectUrl("/Uom/New"); });
</text>
);
}
上面的代码是给btnNew按钮绑定了弹出层的事件 现在还有个按钮要怎么写来让弹出的层关掉呢 展开
1个回答
展开全部
测试过,这样就不会被拦截,IE和MYIE都不会:
<html>
<head>
<style>
</style>
<script language="javascript">
function showpos()
{
var pos=document.body.scrollTop;
pos=pos;
if(pos==0)
paddingB.style.display="none";
else
paddingB.style.display="block";
paddingB.style.height=pos+"px";
document.title=pos;
}
function closead()
{
addiv.style.display="none";
}
</script>
</head>
<body onscroll="javascript:showpos();" style="margin:0px">
<div id="addiv" style="position:absolute;top:200px;left:0px;width:100%;overflow:hidden;" align="center"><div id="paddingB" style="overflow:hidden;"></div><div style="font-size:12px;padding:2px;width:400px" align="right"><a href="javascript:closead();">关闭</a></div><iframe src="" scrolling="no" name="I1" border="0" frameborder="0" style="border:1px solid #ACACAC" width="400" height="300"></iframe></div>
<div style="height:1000px"></div>
</body>
</html>
<html>
<head>
<style>
</style>
<script language="javascript">
function showpos()
{
var pos=document.body.scrollTop;
pos=pos;
if(pos==0)
paddingB.style.display="none";
else
paddingB.style.display="block";
paddingB.style.height=pos+"px";
document.title=pos;
}
function closead()
{
addiv.style.display="none";
}
</script>
</head>
<body onscroll="javascript:showpos();" style="margin:0px">
<div id="addiv" style="position:absolute;top:200px;left:0px;width:100%;overflow:hidden;" align="center"><div id="paddingB" style="overflow:hidden;"></div><div style="font-size:12px;padding:2px;width:400px" align="right"><a href="javascript:closead();">关闭</a></div><iframe src="" scrolling="no" name="I1" border="0" frameborder="0" style="border:1px solid #ACACAC" width="400" height="300"></iframe></div>
<div style="height:1000px"></div>
</body>
</html>
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询