37

我有一个在更改事件上运行发布操作的功能。

$("select#marca").change(function(){
    var marca = $("select#marca option:selected").attr('value');
    $("select#modello").html(attendere);
$.post("select.php", {id_marca:marca}, function(data){
        $("select#modello").html(data);
    });
});

我想在加载事件时执行此功能。是否可以?有没有好的方法来做到这一点?

4

6 回答 6

62

只需将它放在一个函数中,然后在准备好文档时也调用它,如下所示:

$(function () {
    yourFunction(); //this calls it on load
    $("select#marca").change(yourFunction);
});

function yourFunction() {
    var marca = $("select#marca option:selected").attr('value');
    $("select#modello").html(attendere);
    $.post("select.php", {id_marca:marca}, function(data){
        $("select#modello").html(data);
    });
}

change或者只是在页面加载时调用?

$(function () {
    $("select#marca").change();
});
于 2013-02-20T16:15:38.043 回答
44

非常简单的方法是将另一个 .change() 事件链接到您的 on change 函数的末尾,如下所示:

$("#yourElement").change(function(){
   // your code here
}).change(); // automatically execute the on change function you just wrote
于 2014-02-24T20:44:37.090 回答
18

如果您添加.change()到末尾,它将在绑定后立即调用:

$(function() { 
    $("select#marca").change(function(){
        var marca = $("select#marca option:selected").attr('value');
        $("select#modello").html(attendere);
    $.post("select.php", {id_marca:marca}, function(data){
            $("select#modello").html(data);
        });
    }).change(); // Add .change() here
});

或者将回调更改为实际函数并调用它:

function marcaChange(){
    var marca = $("select#marca option:selected").attr('value');
    $("select#modello").html(attendere);
$.post("select.php", {id_marca:marca}, function(data){
        $("select#modello").html(data);
    });
}

$(function() { 
    $("select#marca").change(marcaChange);
    marcaChange();
});
于 2013-02-20T16:15:35.260 回答
2

要调用onload,您可以尝试使用 jQuery:

 $(document).ready(function(){
 onchange();// onload it will call the function
     });

像这样编写你的 onchange 函数,这样会在onchange发生时调用,

function onchange(){
    var marca = $("select#marca option:selected").attr('value');
    $("select#modello").html(attendere);
    $.post("select.php", {id_marca:marca}, function(data){
    $("select#modello").html(data);
});
于 2015-09-21T10:52:28.050 回答
2

这对我有用。

 $(function () {
    $('#checkboxId').on('change', hideShowfunction).trigger('change');
});

function hideShowfunction(){
//handle your checkbox check/uncheck logic here
}
于 2018-09-28T10:51:10.753 回答
1

另一种方法

 $("select#marca").val('your_value').trigger('change');
于 2015-01-13T05:31:45.167 回答