我写了以下非常简单的 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 做些什么吗?