问题标签 [custom-directive]
For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.
string - Vue 指令 - 传入字符串
我在 vue 中有以下自定义指令
它工作正常,但没有单引号会更干净。这可能吗?
angularjs - ng-repeat 不适用于使用自定义指令的字符串列表
我正在开发 Angular js 项目,我们在其中使用 ng-repeat 显示使用自定义指令创建的单元格模板中的字符串列表。
它适用于数字列表。但它不适用于字符串列表。
您可以尝试在plunker 上将数字更改为字符串
如何使用单元格模板获取字符串列表?
javascript - 具有相同自定义指令 vuejs 的多个元素
嘿,我的页面中有一些具有相同自定义指令但值不同的元素。
我想使用该指令获取所有元素来处理它们。
当我使用此代码时:
它只是给了我can
指令的第一个元素,而不是全部,所以我如何才能获得can
指令的所有元素?!
更新:我的元素是这样的:
我想使用v-can
页面中的指令访问所有按钮!怎么做到呢?
angularjs - 当父范围使用带有 @ 属性的 {{}} 进行更改时,自定义指令 dom 不会更改
我正在使用父范围的插值({{}})创建一个具有隔离范围的自定义指令,应该是当父范围更改时,应该使用新数据更新属性。我只更改了 1 个数据,另一个没有更改。
我不需要 2 路绑定,只需 1 路绑定就足够了,这就是我使用 @ 作为属性属性的原因。
我的父母 html
我的指令模板
在我的父范围内
我的指令范围
按钮单击期望对所有值进行更改,但是当单击按钮时,仅显示名称发生更改,但正常且总值没有更改。
你可以参考这个plunkr:https ://embed.plnkr.co/aXctKP/
python-sphinx - How to create custom admonitions in custom directive sphinx?
I have created a custom directive 'limitation' in Sphinx which mentions "Limitation" of a certain product. I want that the limitation be written within a colored box that is similar to 'note' or 'warning' directives with 'limitation' written as the title instead of 'note' or 'warning'. I want this to be handled by my custom directive 'limitation' itself.
Is there any way to do this?
angular - 自定义禁用指令不起作用
我正在尝试创建一个自定义指令来禁用表单字段,但它不起作用。
我还尝试使用来自“@angular/core”的渲染进行上述操作
在 app.component.html 我正在使用 [appCustomDisable]="myVar"
Stackblitz 链接 https://stackblitz.com/edit/angular-lxb661
angular - 如何禁用表格行第一列的自定义指令操作?
我有一个自定义指令,可以在新窗口中打开与表行相关的数据。当我单击作为复选框选择的表格行的第一列时,它正在打开一个新窗口,我应该如何避免在表格行的第一列上执行自定义指令操作。