0

我写了以下非常简单的 jQuery 帖子。它适用于 Internet Explorer,但不适用于 Chrome 或 Firefox:

<script>
function showphone(){
    $.post('phonedata.php',{    
        k: document.getElementById('k').value,
        s: document.getElementById('s').value
    },
    function(output){
        $('#showphone').html(output);
    }); 
}
showphone();
</script>

我可以为 Chrome 和 Firefox 做些什么吗?

4

1 回答 1

0

尝试

$(document).ready(function(e) {
showphone();
});
于 2013-06-01T19:58:53.033 回答