摘要: <style type="text/css"> table tr td { width:240px;height:240px; } .clasImg { width:500px;height:200px; } </style> <script src="jquery-1.9.1.js"></script> <script type="text/javascript"> $(function () { $('#Button1').click(function ( 阅读全文
posted @ 2013-04-18 15:04 奇奇博客 阅读(108) 评论(0) 推荐(0)
摘要: <script type="text/javascript"> //展开图片或收缩图片 $(function () { $('#Button3').click(function () { $('#img').show(5000); }) $('#Button4').click(function () { $('#img').hide(5000); }) }) </script> < /head> < body> <img alt="" i 阅读全文
posted @ 2013-04-18 14:57 奇奇博客 阅读(150) 评论(0) 推荐(0)
摘要: <style type="text/css"> .divFrame { width:260px;border:1px solid #666;font-size:10pt; } .divTitle { background-color:#eee;padding:5px; } .divContent { padding:5px;display:none; } .divCurrColor { background-color:red; } </style> <script src="jQuery/jquery-1.9.1.js"& 阅读全文
posted @ 2013-04-18 14:53 奇奇博客 阅读(272) 评论(0) 推荐(0)
摘要: <style type="text/css"> body { font-size:12px;text-align:center; } #tbStu { width:260px;border:1px solid #666;background-color:#eee; } #tbStu tr { line-height:23px; } #tbStu tr th { background-color:#ccc;color:#fff; } #tbStu .trOdd { background-color:#fff; } </style> <script 阅读全文
posted @ 2013-04-18 14:50 奇奇博客 阅读(152) 评论(0) 推荐(0)
摘要: <script type="text/javascript"> $(function () { $("#btnSubmit").click(function () { var txtName = $('#txtName').val(); var gender = $('#gender').is(':checked') ? '男' : '女'; var isMarry = $('#isMarry').is(':checked') ? 阅读全文
posted @ 2013-04-18 14:47 奇奇博客 阅读(210) 评论(0) 推荐(0)