Home > Backend Development > PHP Tutorial > javascript - 下拉框change事件能在初始化的时候调用吗?

javascript - 下拉框change事件能在初始化的时候调用吗?

WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWB
Release: 2016-06-06 20:12:59
Original
1621 people have browsed it

一个下拉列表,值改变调用jquery的change事件请求ajax数据
我现在想页面在载入时得到某个option下的ajax数据,想实现这样一个功能,请问有什么好的办法吗?

回复内容:

一个下拉列表,值改变调用jquery的change事件请求ajax数据
我现在想页面在载入时得到某个option下的ajax数据,想实现这样一个功能,请问有什么好的办法吗?

页面载入时用jquery选择器找到相应的option对其进行点击。

<code>$(function(){
    $(option).click();
})</code>
Copy after login

可以用jQuery的trigger()方法触发

<code class="Javascript">$(document).ready(function(){
    $('select').find('option:eq(0)').select(function(){
        alert('加载ajax');
    });
    $('select').find('option:eq(0)').trigger('select');
});</code>
Copy after login

html页

js
function Change(){

<code>var strvalue=$("#sel").val();
$.ajax({     
    url: "/Main/Func?valu="+strvalue,
    type: "POST",
    dataType: "json",
    success: function (jdata, stat) {
        alert("成功");
    }
});</code>
Copy after login

}

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Latest Issues
php data acquisition?
From 1970-01-01 08:00:00
0
0
0
PHP extension intl
From 1970-01-01 08:00:00
0
0
0
How to learn php well
From 1970-01-01 08:00:00
0
0
0
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template