简体   繁体   中英

Unable to ng-hide elements

In my mini-project here , I need to hide the Shop button and the Content div when the user clicks on the textbox. I am attempting to do it using ng-hide .

For some reason there is an error with the module.

Error: error:nomod
Module Unavailable

I was able to partly get it working here , but I need to hide the elements when someone clicks on the textbox, before they start typing.

I need to get this working in Firefox only.

What am I missing?

jsFiddle

I've changed your code a bit. You can try this out:

<input type="text" name="hideBasicInfo" ng-click="hideBasicInfo = true" />

<div ng-hide="hideBasicInfo">

When someone's press the textbox I'll set the property hideBasicInfo true. (via ng-click)

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM