[code lang="php"]
<aside> //以下是wordpress侧边栏的一个aside代码
<div id="nav_keleyi_com" style="position:relative;top:0;width:160px; height:600px"> //width和height是本需要展...
1、java map
import java.util.*;
public class CollectionsDemo {
public static void main(String[] args) {
Map m1 = new HashMap();
m1.put("Zara", "8");
m1.put("Mahnaz", "31");
m1.pu...
看完这个才发现,不是Vue难学,而是没有找到好的教程。
进度:目前已经学到第12节。
一、感想
其实感觉写Vue和写类差不多,主要是写属性、写方法。
基于 Vue.js 的移动端组件库
http://mint-ui.github.io/#!/zh-cn
二、...
方法一:纯JS判断
使用这方法既简单,又实用,不需要引入jQuery库,把以下代码加入到<head>里即可。
1
2
3
4
5
<script type=”text/javascript”>
if( /Android|webOS|iPhone|iPad|iPod|BlackBerr...
<script language="javascript">host = window.location.host;document.write(host)</script>
这是一款动画效果非常棒的jQuery+CSS3全屏动画幻灯片图片切换代码,招聘网站幻灯片动画特效下载。
js代码
<script src="statics/assets/js/jquery-1.9.1.min.js"></script> <script src="statics/assets/js/sea.js"...
禁止鼠标右键、禁止全选、复制、粘贴;
oncontextmenu事件禁用右键菜单; js代码:
document.oncontextmenu = function(){
event.returnValue = false;
}
// 或者直接返回整个事件
document.oncontextmenu = function...