Internet Explorer 中未设置 Cookie,报错
Cookie is not set in Internet Explorer, gives an error
我一直在使用下面的代码来创建一个 cookie,这在除 INTERNET EXPLORER 之外的所有浏览器中都可以正常工作。当我点击时出现以下错误创建 cookie 按钮。
错误
Message: '$' is undefined
Line: 4
Char: 2
Code: 0
URI: http://localhost/js/scripts.js
代码
<p>Click on the <strong>Set Cookie</strong> button below to create the testing cookie.</p><br>
<button style="color: black" input type="button" onclick="set_cookie(<?php echo "'".$set_cookie_url."'" ?> );" <?php if(isset($_COOKIE["cookieid"])) { ?> Disabled <?php } ?>value='Set Cookie'><b>Set cookie</b></button>
JS代码
function set_cookie(url){
$.get( url, { cookieid: "628929", projectid: "1" }, set_cookie_complete);
$('body').modal('show') ;
}
function set_cookie_complete(){
location.reload();
}
function unset_cookie(url){
$.get( url, { cookieid: "628929", projectid: "1" }, unset_cookie_complete);
$('body').modal('show') ;
}
function unset_cookie_complete(){
location.reload();
}
谁能帮我解决这个错误并设置 cookie
对于 IE8 及更早版本,您不能使用 jQuery 2.x
将您的 link 更改为版本 1。11.x。对于您使用的如此简单的代码,应该没有区别。
<script src="//code.jquery.com/jquery-1.11.2.min.js"></script>
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.11.2/jquery.min.js"></script>
注意:在 URL 开头使用“//”有助于浏览器决定如何处理它并允许同时使用 HTTP 或 HTTPS。不使用它可能会导致 url "http://your.server.com/ajax.googleapis.com/ajax/..."
我一直在使用下面的代码来创建一个 cookie,这在除 INTERNET EXPLORER 之外的所有浏览器中都可以正常工作。当我点击时出现以下错误创建 cookie 按钮。
错误
Message: '$' is undefined
Line: 4
Char: 2
Code: 0
URI: http://localhost/js/scripts.js
代码
<p>Click on the <strong>Set Cookie</strong> button below to create the testing cookie.</p><br>
<button style="color: black" input type="button" onclick="set_cookie(<?php echo "'".$set_cookie_url."'" ?> );" <?php if(isset($_COOKIE["cookieid"])) { ?> Disabled <?php } ?>value='Set Cookie'><b>Set cookie</b></button>
JS代码
function set_cookie(url){
$.get( url, { cookieid: "628929", projectid: "1" }, set_cookie_complete);
$('body').modal('show') ;
}
function set_cookie_complete(){
location.reload();
}
function unset_cookie(url){
$.get( url, { cookieid: "628929", projectid: "1" }, unset_cookie_complete);
$('body').modal('show') ;
}
function unset_cookie_complete(){
location.reload();
}
谁能帮我解决这个错误并设置 cookie
对于 IE8 及更早版本,您不能使用 jQuery 2.x
将您的 link 更改为版本 1。11.x。对于您使用的如此简单的代码,应该没有区别。
<script src="//code.jquery.com/jquery-1.11.2.min.js"></script>
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.11.2/jquery.min.js"></script>
注意:在 URL 开头使用“//”有助于浏览器决定如何处理它并允许同时使用 HTTP 或 HTTPS。不使用它可能会导致 url "http://your.server.com/ajax.googleapis.com/ajax/..."