【发布时间】:2014-01-10 14:58:39
【问题描述】:
我正在尝试在 java 脚本中为我的网格视图构建一个弹出窗口函数,但我无法打开该窗口。
var oldgridcolor;
function SetMouseOver(element) {
oldgridcolor = element.style.backgroundColor;
element.style.backgroundColor = '#ffeb95';
element.style.cursor = 'pointer';
element.style.textDecoration = 'underline';
}
function SetMouseOut(element) {
element.style.backgroundColor = oldgridcolor;
element.style.textDecoration = 'none';
}
function SetMouseDown(element) {
var r = confirm('Are you sure?');
var url = window.location.pathname;
var pathArray = url.split('/');
var host = pathArray[1];
var newHost = '/About.aspx';
if (r == true) {
window.location = host + newHost;
}
else {
alert('it didnt work');
}
return false;
}
后面的代码
protected void gvrecords_RowDataBound(object sender, GridViewRowEventArgs e)
{
if (e.Row.RowType == DataControlRowType.DataRow)
{
e.Row.Attributes["onmouseover"] = "javascript:SetMouseOver(this)";
e.Row.Attributes["onmouseout"] = "javascript:SetMouseOut(this)";
e.Row.Attributes["onmousedown"] = "javascript:SetMouseDown(this)";
}
任何帮助将不胜感激。
【问题讨论】:
-
实现 window.open 而不是 window.location window.open('your page','name','width=200,height=200');
标签: c# javascript asp.net gridview