Bearbeiten Sie den Code:
Siehe Ergebnis »
Versuch es selber - ©
w3ii.com
<
!DOCTYPE
html
>
<
html
>
<
script
src
="/lib/angular-1.4.8.min.js"
>
<
/script
>
<
body
>
<
div
ng-app
=""
ng-init
="quantity=1;cost=5"
>
<
p
>
Total in dollar:
<
span
ng-bind
="quantity * cost"
>
<
/span
>
<
/p
>
<
/div
>
<
/body
>
<
/html
>
<!DOCTYPE html> <html> <script src="/lib/angular-1.4.8.min.js"></script> <body> <div ng-app="" ng-init="quantity=1;cost=5"> <p>Total in dollar: <span ng-bind="quantity * cost"></span></p> </div> </body> </html>