04 2016 档案
摘要:'; //iframe加载完成后 $("#iframe").load(function(){ //设置class="name"的值为jeffson $(this).contents().find('.name').val("jeffson"); //设置class="content"的值为abcdefg $(this).contents().find('.conte...
阅读全文
摘要:冒泡排序: 快速排序: 选择排序: 插入排序: 二叉树(二分法)排序:
阅读全文
摘要:<html> <head> <title>js验证输入的金钱格式</title> <script type="text/javascript"> function moneyCheck(){ var isNum = /^\d+(\.\d+)?$/; var money = document.getE
阅读全文
摘要:css: style="cursor: pointer" 例如: <input type="button" style="cursor:pointer"> <a href="#" style="cursor:pointer"></a> <span style="cursor:pointer"></s
阅读全文
摘要:function formatDate(timestamp){ var test = new Date(parseInt(timestamp) * 1000); var $year = test.getFullYear(); var $month = parseInt(test.getMonth())+1; var $day = test.getDate(); //返回格式...
阅读全文