onchange不工作jquery.selectbox

时间:2012-06-12 13:03:10

标签: php jquery jquery-plugins

在onchange上事件不能在jquery.selectbox-05中工作,我使用两个下拉框一个国家另一个州如果我选择国家状态将自动拾取它的工作在正常的PHP下拉但我使用此代码jquery.selectbox它不起作用任何人都会帮助我

这是我的代码

<script type="text/javascript" src="scripts/jquery.selectbox-0.5.js"></script>
<script type= "text/javascript" src = "scripts/countries2.js"></script>
$(document).ready(function(){
    $('.selectBoxMedium').selectboxMedium();
    $('.selectBoxSmall').selectboxSmall();
    $('.selectBoxSmallest').selectboxSmallest();
    $('.selectBox').selectbox();
    $(document).pngFix(); 
});
<p class="formInput formSelectBox">
    <select onchange="print_state1('state',this.selectedIndex);" id="country" class= "selectBox data" name ="country"></select>
</p>

<p class="formInput formSelectBox">
    <select name ="state" id ="state" class="selectBox"></select>
    <script language="javascript">print_country1("country");</script>
</p>

Javascript函数:

function print_country1(country_id) {
    // given the id of the <select> tag as function argument, it inserts <option> tags
    var option_str = document.getElementById(country_id);
    var x, i=0;
    for(x in country_arr){
        option_str.options[i++] = new Option(country_arr[x],country_arr[x]);
    }
}

function print_state1(state_id, state_index) {
    var option_str = document.getElementById(state_id);
    var x, i=0;
    state_index++;
    var state_arr = s_a[state_index].split("|");
    for(x in state_arr) {
        option_str.options[i++] = new Option(state_arr[x],state_arr[x]);
    }
}

3 个答案:

答案 0 :(得分:1)

这是你的问题......这个插件无法处理动态选项。我的意思是,当你执行$element.selectbox()时,插件会执行select元素的实际选项,如果更改选项,则不会更新选择框。

因此,如果你有一个选择元素无选项并运行selectbox插件,它将创建一个没有选项元素的选择框。当您更改国家/地区并在select#states的选项中“重新加载”时,所选国家/地区的所有州都会加载并添加为select#states元素的选项,但插件selectbox在页面加载中执行,不会重新加载其元素中的选项:(

如何解决?在您的情况下,您应该能够删除select#state的兄弟姐妹(由selectbox插件生成),使用新的状态值更新选项,然后再次运行selectbox插件:)

检查此功能jsfiddle:)

PS:这个小提琴正在使用countries-3.1.jsjquery.selectbox-0.5而没有CSS

答案 1 :(得分:1)

这个插件的问题是它无法处理onchange()事件,因为我们大多是烦躁的。所以,这是解决方案..

<script src="http://ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js" type="text/javascript" charset="utf-8"></script>
<script src="jquery.selectbox-0.5.js" type="text/javascript" charset="utf-8"></script>

<script type="text/javascript">
$(document).ready(function() {
    $('.items').selectbox();
                $('#country_input').blur(function(){
                   setTimeout(function(){
                       var e = document.getElementById("country");
                       var countryCode = e.options[e.selectedIndex].value;
                       getState('state',countryCode);
                   },500)                        

                });
});

</script>

<script type="text/javascript">
function getState(state_id, countryCode)
{
var option_str = document.getElementById(state_id);
option_str.length=0;
option_str.options[0] = new Option('Select State','');
option_str.selectedIndex = 0;
//write your code to get state list with the use of "countryCode"
var state_arr = stateListArray; //assume "stateListArray" is an array which is holding list of states
for (var i=0; i<state_arr.length; i++) {
    option_str.options[option_str.length] = new Option(state_arr[i],state_arr[i]);
}
$('#state').parent().children(':not(#state)').remove();
$('#state').selectbox();
}
</script>

<p>
<select id="country" class= "items" name ="country">
<option value="countryCode">Country Name</option>
</select>

    

答案 2 :(得分:0)

<script type="text/javascript" src="scripts/jquery.selectbox-0.5.js"></script>
<script type="text/javascript" src = "scripts/countries2.js"></script>
<script type="text/javascript">
$(document).ready(function(){
    $('.selectBoxMedium').selectboxMedium();
    $('.selectBoxSmall').selectboxSmall();
    $('.selectBoxSmallest').selectboxSmallest();
    $('.selectBox').selectbox();
    $(document).pngFix();

    $('.selectBoxMedium, .selectBoxSmall, .selectBoxSmallest, .selectBox').change(function() {
        alert($(this).attr('class') + ' has changed');
    });

    $('#country').change(function() {
        print_state1('state', $(this+':selected').index());
    });

    print_country1("country");
});
</script>
<p class="formInput formSelectBox">
    <select id="country" class="selectBox data" name="country"></select>
</p>

<p class="formInput formSelectBox">
    <select name="state" id="state" class="selectBox"></select>
</p>

现在怎么办?