日期:2014-05-17  浏览次数:20582 次

asp.net 怎么设置一个提示成功后即隐藏控件!!!!
当用户修改资料成功后,设置一个提示修改成功控件然后就消失,现在很多网站都有这样的控件。没做过不知如何下手,高手请给下代码!!!!

------解决方案--------------------
html部分:

<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.min.js" type="text/javascript" />
<a href="javascript:void(0);" onclick="showTips( '操作成功啦', 100, 2 );">点击我 两秒后消失</a>


js部分:

<script>
function showTips( tips, height, time ){
var windowWidth = document.documentElement.clientWidth;
var tipsDiv = '<div class="tipsClass">' + tips + '</div>';
$( 'body' ).append( tipsDiv );
$( 'div.tipsClass' ).css({
'top' : height + 'px',
'left' : ( windowWidth / 2 ) - ( tips.length * 13 / 2 ) + 'px',
'position' : 'absolute',
'padding' : '3px 5px',
'background': '#8FBC8F',
'font-size' : 12 + 'px',
'margin' : '0 auto',
'text-align': 'center',
'width' : 'auto',
'color' : '#fff',
'opacity' : '0.8'
}).show();
setTimeout( function(){$( 'div.tipsClass' ).fadeOut();}, ( time * 1000 ) );

</script>



与程序也可以结合。这个就要看实际情况了!