标签: javascript jquery object
我正在使用jQuery进行活动.change()。
.change()
我有$(this)而console.log($(this))告诉我:
$(this)
console.log($(this))
所以,我需要检索值property value。在我的示例中,我需要检索"7 Rue de Rivoli, Paris, France"。
property value
"7 Rue de Rivoli, Paris, France"
我该怎么做?
编辑:使用.val(),我只有第一个属性值“7 rue”
答案 0 :(得分:2)
$(this).val()应该可以解决问题。
$(this).val()