爲什麼不能使用mootools更改cookie值?
如果我在php中設置了cookie值,我將無法使用mootools更改cookie值。
爲什麼會出現?這是一個mootools的bug嗎?
爲什麼不能使用mootools更改cookie值?
<?php
setcookie('drres','hello');
?>
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/mootools/1.4.5/mootools-yui-compressed.js"></script>
<script type="text/javascript">
function drres_cookie_read(){
alert(Cookie.read('drres'));
}
function drres_cookie_write(){
Cookie.write('drres','world');
alert(Cookie.read('drres')); // result is "hello" not "world",why?
}
</script>
<button onclick="drres_cookie_read()">read</button>
<button onclick="drres_cookie_write()">write</button>