我想加载页面,但这种情况不起作用

时间:2015-03-07 16:15:12

标签: jquery html

//this is the jquery codition
$(document).ready(function(){ 
    if($("#sel").change.val =="info"){ 
        $("#in").load("insert.info");
    }
});



// This is the select option
<select id="sel">
    <option value="info">About Us</option> 
    <option>Contact Us</option>
</select> 

1 个答案:

答案 0 :(得分:0)

将您的jQuery更改为:

$("#sel").change(function(){
    if($(this).val() =="info"){ 
        $("#in").load("insert.info");
    }
})