jQuery可设置标题与内容弹出层
jQuery可设置标题与内容弹出层是一款jQuery弹出层插件制作的可设置标题与内容的弹框代码。jQuery弹出层弹框代码
鼠标点击
<script src="js/jquery-1.10.2.min.js" type="text/javascript"></script>
<script src="js/jquery.alertWindow.min.js" type="text/javascript"></script>
<style type="text/css">
.alertWindowContent h1,p{text-align: center;font-size: 18px;font-weight: bolder;}
.alertWindowContent input{width: 100px; height: 50px;cursor: pointer;-webkit-border-radius: 5px;-moz-border-radius: 5px;border-radius: 5px;}
</style>
<script>
$(function(){
$("#input1").click(function(){
jQuery.alertWindow("标题设置","内容设置");
});
$("#input2").click(function(){
jQuery.alertWindow("来自地球的消息","火星很好!");
});
});
</script>
本站资源仅限于学习研究,严禁从事商业或者非法活动!
源码搜藏网所有源码来自互联网转载与用户上传分享,如果侵犯了您的权益请与我们联系,我们将在24小时内删除!谢谢!