我在使用jQuery和Mozzila Firefox時遇到問題。 在Chrome中一切正常,但不知何故,Firefox沒有看到jQuery。JQuery不適用於Firefox,但適用於Chrome
我這是怎麼叫的jQuery
<!-- Favicon and touch icons -->
<link rel="shortcut icon" href="assets/ico/favicon.png">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"></script>
<link rel="stylesheet" href="http://maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap.min.css">
<script type="text/javascript" src="assets/bootstrap/js/datepicker.js"></script>
而這正是它失敗(錯誤是:的ReferenceError:$沒有定義):
<script>
function ajax_check(){
var id = $("#xml_select").val(); // this is the line where I get error
$.ajax({
url: "ajax_check.php?id="+id,
success: function(response) {
var result = jQuery.parseJSON(response);
//console.log(JSON.stringify(result['ncp'].replace('"','')));
var ncp = JSON.stringify(result['ncp']);
var id = JSON.stringify(result['id']);
$("#racun").val(ncp.substring(1,12));
$("#id_podnosilac").val(id.substring(1,5));
},
});
}
</script>
請幫幫忙,這可能是導致這?
你得到了什麼錯誤? –
也許只是FF瀏覽器的緩存問題...因爲否則,您的代碼將起作用。 –
提出全部請求Ctrl + F5 –