javascript 的alert,怎么把上边的javascript的提醒改成别的。
2个回答
展开全部
用div+css画出alert效果。这样alert框美观并可以根据你的需求进行调整。也以做成固定时间后提示框自动消失,也可做成手动点击关闭。div可用事先画好的图片做背景也可直接用css做出效果。
以下为我自己做的一个成功提示,2秒后自动消失。网上有很多类似代码你可以根据自己需要找到合适的。
var thisHREF=document.URL;
var windowWidth = document.documentElement.clientWidth;
var tipsDiv = '<div class="tipsClass"> </div>';
$( 'body' ).append( tipsDiv );
$( 'div.tipsClass' ).css({
'top' : '300px',
'left' : ( windowWidth / 2 ) - 130 + 'px',
'position' : 'absolute',
'background':'url('resource/default/images/image.png) no-repeat',
'margin' : '0 auto',
'width' : '372px',
'height':'203px',
'opacity' : '0.8'
}).show();
setTimeout( function(){$( 'div.tipsClass' ).fadeOut();}, ( 2000 ) ); }
以下为我自己做的一个成功提示,2秒后自动消失。网上有很多类似代码你可以根据自己需要找到合适的。
var thisHREF=document.URL;
var windowWidth = document.documentElement.clientWidth;
var tipsDiv = '<div class="tipsClass"> </div>';
$( 'body' ).append( tipsDiv );
$( 'div.tipsClass' ).css({
'top' : '300px',
'left' : ( windowWidth / 2 ) - 130 + 'px',
'position' : 'absolute',
'background':'url('resource/default/images/image.png) no-repeat',
'margin' : '0 auto',
'width' : '372px',
'height':'203px',
'opacity' : '0.8'
}).show();
setTimeout( function(){$( 'div.tipsClass' ).fadeOut();}, ( 2000 ) ); }
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询
广告 您可能关注的内容 |