作者热门文章
- c - 在位数组中找到第一个零
- linux - Unix 显示有关匹配两种模式之一的文件的信息
- 正则表达式替换多个文件
- linux - 隐藏来自 xtrace 的命令
我想禁用带有 glyphicon 图标的 span 标签。但是 ng-disabled 不起作用,即图标仍然可以点击。
<span ng-disabled="true" class="glyphicon glyphicon-trash" style="font-size:13px;" aria-hidden="true" ng-click="DeleteIpAdress(objIpAdress)" ng-show="objIpAdress.ShowRemoveButton" ng-model="objIpAdress.ShowRemoveButton" title="Delete IP address"></span>
标签有问题吗?
最佳答案
ng-disabled
指令仅适用于输入字段和按钮。它不适用于跨度。 Ref: ngDisabled Documentation
您可以使用以下代码阻止点击操作
ng-click="isClickAllowed && DeleteIpAdress(objIpAdress)"
关于javascript - ng-disabled 不适用于 span 标签,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33751611/
我是一名优秀的程序员,十分优秀!