gpt4 book ai didi

forms - Coffeescript 下拉值

转载 作者:行者123 更新时间:2023-12-01 06:14:36 25 4
gpt4 key购买 nike

如果国家/地区下拉菜单等于“加拿大”或“美国”,我会尝试通过 Coffeescript 显示省/州字段。

到目前为止我有(但看起来很复杂)

canada = "Canada"
usa = "United States"
$('#order_shipping_address_attributes_country').change ->
selected = $('#order_shipping_address_attributes_country :value').text()
$('#shipping_province').show() if selected is canada

最佳答案

你可以做到

selected = $('#order_shipping_address_attributes_country option:selected').text()

然而,根据http://api.jquery.com/selected-selector/ , 事情会用

表现得更好
selected = $('#order_shipping_address_attributes_country option')
.filter(':selected').text()

关于forms - Coffeescript 下拉值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15012727/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com