最新 最热

element之upload组件钩子函数中传参

在一个list中使用,每个item中都要使用upload,但是在文档中没有关于这些上传的钩子函数怎么传递自定义参数,后来在文档中尝试给钩子函数传参 实例中只是 写了一个固定的参数,其实在使用中可以穿入每个item的标识,比如 inde...

2019-01-06
1

LeetCode(一)

Given an array of integers, return indices of the two numbers such that they add up to a specific target. You may assume that each input would have exactly o...

2018-09-04
1

DOM 1

首先getAttribute  setAttribute只能被元素节点对象调用。(属性节点和文本节点调用不了)我们可以通过一下三种方式得到元素:document.getElementById();//返回唯一一个元素节点document.getElementsByTagName();//返...

2018-06-28
1

vue使用element-ui的el-input监听不了回车事件

原因今天在使用element-ui时,el-input组件监听不了回车事件,如下代码没有想要的效果:<el-input class="search-input" placeholder="请输入内容" v-model="searchText" @keyup.enter="search()"></el-input>......

2018-06-20
1

leetcode 27 Remove Element

class Solution {public: int removeElement(vector<int>& nums, int val) { int res = 0; for (int i = 0; i < nums.size(); ++i) { if...

2018-06-04
0

原 三对角矩阵

**三对角矩阵(tridiagonal):**M是一个三对角矩阵,当且仅当|i-j|>1时,M(i,j)=0。 在一个rows×rows的三对角矩阵中,非0元素排列在如下三条对角线上: 1)主对角...

2018-05-28
1

leetcode-665-Non-decreasing Array

题目描述:Given an array with n integers, your task is to check if it could become non-decreasing by modifying at most 1 element.We define an array is non-decreasi...

2018-05-22
1

leetcode-747-Largest Number At Least Twice of Others(求vector的最大值和次大值)

题目描述:In a given integer array nums, there is always exactly one largest element.Find whether the largest element in the array is at least twice as much as eve...

2018-05-21
1

Modern Algebra 读书笔记

Modern Algebra 读书笔记Introduction本文是Introduction to Modern Algebra(David Joyce, Clark University)的读书笔记。符号(Notation)image.png术语特征元素(identity element) 别名:neu......

2018-05-17
1

IEPNGFix:Unclickable children of element 解决办法

以前我有写过一篇关于让IE6支持png半透明图片的方法,这期间这一神器一直发挥了很大的作用,并且没有出现过什么差错,直到昨天。昨天同事做的一个项目因为设计图的关系,所以实现起来用到了很多position定位的属性,这里就不细...

2018-05-09
1