摘要:
<style> *{ margin:0; padding:0; list-style:none;} body{ font:normal 14px/24px 'MicroSoft YaHei';} .cotrs{ width:960px; height:32px; line-height:32px; 阅读全文
摘要:
在main.js里进行全局注册 Vue.prototype.ajax = function (){}在所有组件里可调用 this.ajax // xxx.js 组件 exports.install = function (Vue, options) { Vue.prototype.ajax = fu 阅读全文
摘要:
<div class="qie"> <! 切换容器--> <div class="tit"><! 切换标题--> <h3 onMouseOver="set('qie',1,5)" id="qie1" class="hover">标题1</h3> <h3 onMouseOver="set('qie', 阅读全文
摘要:
jquery改变背景颜色<html><head><script type="text/javascript" src="/jquery/jquery.js"></script><script type="text/javascript">$(document).ready(function(){ $ 阅读全文
摘要:
pointer-events:字面理解是点击鼠标事件,值分别是auto和none。 当使用pointer-events:none,表示它将捕获不到任何点击,而只是让事件穿透到它的下面。代码如下: 阅读全文
摘要:
按照前辈意见,解决方案如下: input[type="text"] { -webkit-appearance: none;}textarea{ -webkit-appearance: none;} 按照前辈意见,解决方案如下: input[type="text"] { -webkit-appeara 阅读全文
摘要:
<div> <textarea placeholder="填写服务备注" style="width:100%; border:solid 1px #d8d8d8; border-radius:3px; font-size:14px; padding:10px;" rows="3" maxlength 阅读全文
摘要:
vue-js <select @change="ps_onchange($event)"> <option value="" selected>请选择区域</option> <option value=""> 默认区域</option> <option value="1" >2</option> < 阅读全文
摘要:
用cssselect下拉框的美化这个可以换种方式实现,首先select的样式每个浏览器都有其默认的样式,需要先去除这些默认样式,其次,select里面的样式诸如箭头,下拉框等等的样式,这里提供一种思路,就是在select的外层添加一个div,对这个div元素设置样式,select元素则是没样式,从而 阅读全文
摘要:
vue2.0 实现click点击当前li,动态切换class 1,文件内容 //为item添加不存在的属性,需要使用vue提供的Vue.set( object, key, value )方法。 看详解:https://cn.vuejs.org/v2/api/#Vue-set <template> < 阅读全文