function workarounda(id)
{
// c = $('content');
// o = $('old-content');
// c.innerHTML = "<div id='loading'>载入中...</div>";
// o.innerHTML = c.innerHTML;
// c.style.display = 'none';
// o.style.display = 'block';
var myAjax = new Ajax.Request('http://localhost/DM/Pages/DefineProject/ajax.aspx?id='+id, {method: 'get', onComplete:updates});
}
function updates(response)
{
// new Effect.Fade($('old-content'));
//new Effect.Appear($('content'));
alert(response.responseText);
}
{
// c = $('content');
// o = $('old-content');
// c.innerHTML = "<div id='loading'>载入中...</div>";
// o.innerHTML = c.innerHTML;
// c.style.display = 'none';
// o.style.display = 'block';
var myAjax = new Ajax.Request('http://localhost/DM/Pages/DefineProject/ajax.aspx?id='+id, {method: 'get', onComplete:updates});
}
function updates(response)
{
// new Effect.Fade($('old-content'));
//new Effect.Appear($('content'));
alert(response.responseText);
}
版权声明:本文为iteye_9875原创文章,遵循CC 4.0 BY-SA版权协议,转载请附上原文出处链接和本声明。