我有以下代码,我想稍微操纵它,但在普通的 javascript 中这样做感觉更熟悉:
jQuery ->
states = $('#person_state_id').html()
console.log(states)
$('#person_country_id').change ->
country = $('#person_country_id :selected').text()
options = $(states).filter("optgroup[label=#{country}]").html()
console.log(options)
if options
$('#person_state_id').html(options)
else
$('#person_state_id').empty()
谢谢!