gpt4 book ai didi

javascript - 选择列表中的汽车,将值插入 cookie - jQuery

转载 作者:行者123 更新时间:2023-11-28 08:46:23 25 4
gpt4 key购买 nike

我有汽车型号列表,我尝试使用 jQuery 将 select 的值插入到 cookie 中。

这是我的代码:

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>test</title>
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.4.2/jquery.js"></script>
<script src="jquery.cookie.js" type="text/javascript"></script>
<script type="text/javascript">
var singleValues = $("#car").val(); //I NEED TO BE INSIDE
$('#continue').click(function() {
$.cookie("car", singleValues);
})

$('#continue').click(function() {
var singleValues = $("#car").val();
$.cookie("car", singleValues);
})
</script>
</head>
<body>
<select id='car'>
<option value="mazda">mazda</option>
<option value="honda">honda</option>
</select>
<a href='/' id='continue'>#<div id='continue_button'></div></a>
</body>
</html>

但是 cookies 没做好......为什么?

非常感谢您的帮助:)

最佳答案

您需要将代码包装在文档就绪处理程序中。试试这个:

<script type="text/javascript">
$(function() {
$('#continue').click(function() {
var singleValues = $("#car").val();
$.cookie("car", singleValues);
})
});
</script>

当前,您的代码正在 DOM 中存在元素之前附加事件。

关于javascript - 选择列表中的汽车,将值插入 cookie - jQuery,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19741723/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com