从bootstrap国家选择器中获取选定值

时间:2015-08-04 07:45:15

标签: c# asp.net twitter-bootstrap

我在网络表单中使用了bootstrap国家/地区选择器。我想从国家选择器中获取所选值。

这是我的国家/地区选择码:

$(".js-example-data-array-selected").select2({
  data: data
})

我尝试使用此代码获取所选值(我使用post方法传递值):

<div id="country" class="form-group bfh-selectbox bfh-countries" data-country="US" data-flags="true">
    <input type="hidden" value="">
    <a class="bfh-selectbox-toggle" role="button" data-toggle="bfh-selectbox" href="#">
        <span class="bfh-selectbox-option input-medium" data-option=""></span>
        <b class="caret"></b>
    </a>
    <div class="bfh-selectbox-options">
        <div role="listbox">
            <ul role="option"></ul>
        </div>
    </div>
</div>

我使用另一个页面(Login.aspx中的国家选择器,从另一个页面Test.aspx检索数据)来检索数据。

但这并没有给我任何结果 - 我该怎么做?

1 个答案:

答案 0 :(得分:0)

它可能有点长,但您可以使用jQuery获取所选值,然后将其传递给asp控件...

{{1}}

希望它有助于或使你走上正确的道路。