您的位置:首页 > Web前端 > JQuery

jQuery Part 2

2015-09-21 01:37 816 查看
1. html 和 js 传值

html:

@(lang: String, shop: Shop, meal: Meal, table: DiningTable)

@layout("Dashboard", Seq("/assets/javascripts/operator-dashboard.min.js"), Seq("/assets/stylesheets/operator-dashboard.min.css")){
<script>
window.id = @meal.id;

</script>

注意 在html中传入的值需要加@取值,不能直接传对象并使用,例如meal,因为这时对象只是一个特定字符串,但是可以单独取元素使用.

javascript:

id = window.id

可以直接用window传递值

2. js 实时检测输入变化, 如下 输入subtotal discount, Total实时变化

Subtotal:

Discount:

Total: $0.00

displayInvoice = (subtotal, discount) ->

discountAmount = subtotal*discount/100
$('.display-discount').html "$" + discountAmount.toFixed(2)
total = 0
total = subtotal
total -= discountAmount
$('.display-total').html "$" + total.toFixed(2)

updateInfo=() ->
subtotal = parseFloat($('#subtotal').val())
discount = parseFloat($('#discount').val())
if !subtotal
subtotal = 0
if !discount
discount = 0
displayInvoice(subtotal,discount)

$(document).ready ->

$('.btn-pay').on('click', ->
payMeal(window.id)
)
$('#subtotal').on('keyup', ->
updateInfo()
)
$('#discount').on('keyup', ->
updateInfo()
)
$('.input-gst').on('click', ->
updateInfo()
)
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: