码迷,mamicode.com
首页 >  
搜索关键字:angularjs directive    ( 5501个结果
display 与 visibility
项目开发中经常会遇到需要显示和隐藏DOM元素。常用的两个是display,visibility属性,高级点的会用到angularJS的ng-show,ng-if指令。 W3标准对这个两个属性的解释如下: display 设置元素如何显示。 visibility 设置元素是否可见。 dispaly: ...
分类:其他好文   时间:2020-04-04 14:55:32    阅读次数:73
Angular directive 实例详解
准备代码,会在实例中用到 var app = angular.module('app', []); angular指令定义大致如下 app.directive('directiveName', function() { return { // config } }) 其中return返回的配置对象包 ...
分类:其他好文   时间:2020-04-04 09:24:26    阅读次数:51
exsi报错Error: [$rootScope:inprog]
安装vmwareexsi系列时,通过网页访问时出现报错Error:[$rootScope:inprog]http://errors.angularjs.org/1.3.2/$rootScope/inprog?p0=%24digestathttps://10.1.1.10/ui/scripts/main.js:263:20611atl(https://10.1.1.10/ui/scripts/mai
分类:其他好文   时间:2020-03-30 21:45:33    阅读次数:449
Vue过滤器
在了解过滤器之前,我们需要明确一个概念--过滤器,本质上都是函数。其作用在于用户输入数据后,它能够进行处理,并返回一个数据结果。Vue.js与AngularJS中的过滤器语法有些类似,使用管道符(|)进行连接。 一、内置过滤器 Vue.js内置了一系列常用的过滤器,可以直接进行调用。这些内置过滤器都 ...
分类:其他好文   时间:2020-03-27 10:50:24    阅读次数:93
using keyword in C#
The using keywords has three major uses: The using statement defines a scope at the end of which an object will be disposed. The using directive creat ...
分类:Windows程序   时间:2020-03-26 01:34:09    阅读次数:100
怎么写一个全局的自定义指令
官网例子的延伸https://cn.vuejs.org/v2/guide/custom directive.html 1.先建立一个directive的文件,在地下建立子文件,例如focus.focus底下有index.js 2.在组件里面去引入和使用 ` ` ...
分类:其他好文   时间:2020-03-23 15:09:54    阅读次数:175
vue自定义指令
自定义指令 https://cn.vuejs.org/v2/guide/custom-directive.html 简介 Watch a free video lesson on Vue School 除了核心功能默认内置的指令 (v-model 和 v-show),Vue 也允许注册自定义指令。注 ...
分类:其他好文   时间:2020-03-21 18:24:03    阅读次数:82
remote_addr(::1)不返回IPv4地址127.0.0.1的解决办法
Turn off IPv6 in Apache To turn off IPv6 in Apache, just change the Listen directive to: Listen 0.0.0.0:80 This will limit Apache to listening only to ...
分类:其他好文   时间:2020-03-18 17:11:53    阅读次数:188
获取部分视图(子控制器)的model值
项目是ASP.NET MVC,在重构时页面时,几部页面相同的html代码,被抽至部分视图Partial View中去了。但是ASP.NET MVC中,又使用了angularjs。所以部分视图中的Controller相对于angularjs来说,就成了子控制器Controller。 现在的问题是,在视 ...
分类:其他好文   时间:2020-03-17 11:33:51    阅读次数:79
踩坑实录---Angular防抖——点击事件
npx ng g directive DebounceClickDirective --module=app 然后自动生成了2 个文件 CREATE src/app/debounce-click-directive.directive.spec.ts (290 bytes) CREATE src/a ...
分类:其他好文   时间:2020-03-14 01:08:15    阅读次数:156
5501条   上一页 1 ... 6 7 8 9 10 ... 551 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!