标签: javascript php jquery
我有一个JQuery函数,我正在尝试从我的HTML中获取select字段的值。
select
$('.selectCurrency').change(function(){ //alert(this.value); alert("{{$users["+this.value+"]->currency}}"); });
this.value中的投掷错误。
this.value
有关我如何获得价值的任何建议吗?
答案 0 :(得分:-1)
只需在jQuery中使用.val()函数即可。 http://api.jquery.com/val/
.val()