//minimize latest news
window.document.querySelector("#ncWrapper > #nc > #action_ncMinMax").click();
//select location in weather
// $("a:contains('München')").click();
// check if variable is stored in cookie
var loc = $.cookie('loc_cookie');
if (loc != null) {
alert('loc existiert');
var loc_exists = 1;
}
else { var loc_exists = 0; };
// only ask for location if no location is saved yet [functions inside if work]
if (!loc_exists) {
var loc = prompt("Wählen Sie den Ort für den Wetterbericht?");
alert('Sie haben ' + loc + ' als Ort für den Wetterbericht gewählt.');
};
$("a:contains('" + loc + "')").click();
// save to cookie
$.cookie('loc_cookie', loc);
alert('loc in Cookie gespeichert');
任何人都可以幫助我嗎? var loc = $.cookie('loc_cookie');
似乎不起作用。我只是複製/粘貼它,並希望你知道,我想讓JS做什麼。設置天氣的位置,如果cookie存在,如果不要求位置並將其保存在cookie中
- 找餅乾 - >幫助獲取Cookie並保存,如果它存在
- ,如果它不存在,詢問位置||如果沒有做任何事情。
- 獲取位置。
- 在cookie中保存位置。
您能否擴展'似乎不工作'。我們需要錯誤消息和錯誤行爲的詳細信息。 –