摘要:
当git仓库改动,用git fetch 拿来、取来 和git merge融入、相融 通过以上的操作终于将项目推送到了远程仓库里了,如果还要继续推送其他文件,则必须先把以前的文件pull下来,与要提交的文件合并在一起,再一起推送上去 即可同步本地和git线上仓库,可重新走一遍,把本地更新上传git服务 阅读全文
摘要:
vue2.0 v-for 阅读全文
摘要:
建议,position:absolute; top:0px; left:0px;bottom:0px;right:0px; <!DOCTYPE html><html> <head> <meta charset="UTF-8"> <title>demo</title> </head> <body> < 阅读全文
摘要:
‘cnpm’不是内部或外部命令 阅读全文
摘要:
<!doctype html> <html> <head> <meta charset="utf-8"> <title>选择框样式</title> <style> label {font-size:12px;cursor:pointer;} label i {font-size:12px;font- 阅读全文
摘要:
首先,允许网页手机模式,并且适配屏幕宽高,并且强制让浏览器以最高的解析模式解析文本(为了避免兼容性不好) <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-sca 阅读全文
摘要:
<input type="button" id="btn" value="免费获取验证码" /> <script type="text/javascript"> var wait=60; function time(o) { if (wait == 0) { o.removeAttribute("d 阅读全文
摘要:
1,全名代替 jQuery: 阅读全文
摘要:
<input type="button" name="back" value="重新填写" onclick="javascript:history.back(-1);"/>history.back(-1):直接返回当前页的上一页,数据全部消息,是个新页面history.go(-1):也是返回当前页的 阅读全文
摘要:
<p>查找函数中参数最大的数</p> <p id="demo"></p> <script> x = findMax(1,123,500,115,44,88); function findMax(){ var i,max = arguments[0]; if(arguments.length<2) r 阅读全文