gpt4 book ai didi

javascript - jQuery 代码不能在我的本地机器上运行

转载 作者:行者123 更新时间:2023-11-30 06:43:34 26 4
gpt4 key购买 nike

以下代码在 http://jsfiddle.net/saQTw/2/ 上运行良好

出于某种原因,它在我的本地机器上不起作用,我不确定我在哪里犯了错误。需要专家的眼光来查看我在这段代码中做错了什么。

我从 stackoverflow 获得的代码支持用日期填充选择列表但我不能让它在我的本地机器上工作。

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Untitled Document</title>
<script type="text/javascript"
src="http://ajax.googleapis.com/ajax/libs/jquery/1.7.1/jquery.min.js">
</script>
<link href="css.css" rel="stylesheet" type="text/css" />
<script>
function pad(n){return n<10 ? '0'+n : n}
var date = new Date();
var selectElement = $('<select>'), optionElement;
for (var count =0; count < 90; count++){
formattedDate = pad(date.getUTCDate()) + '-' + pad(date.getUTCMonth()+1) + '-' + date.getUTCFullYear();
optionElement = $('<option>')
optionElement.attr('value',formattedDate);
optionElement.text(formattedDate);
selectElement.append(optionElement);
date.setDate(date.getDate() + 1);
}
$('#ddDate').append(selectElement);
</script>
</head>

<body>

<div id="ddDate"> </div>
</body>
</html>

我试过 jQuery 1.6 版也不起作用

上述问题的解决方法:

<script>
$(function(){
function pad(n){return n<10 ? '0'+n : n}
var date = new Date();
var selectElement = $('<select>'), optionElement;
for (var count =0; count < 90; count++){
formattedDate = pad(date.getUTCDate()) + '-' + pad(date.getUTCMonth()+1) + '-' + date.getUTCFullYear();
optionElement = $('<option>')
optionElement.attr('value',formattedDate);
optionElement.text(formattedDate);
selectElement.append(optionElement);
date.setDate(date.getDate() + 1);
}
$('#ddDate').append(selectElement);
});
</script>

最佳答案

尝试将 jquery 包装在 document.ready()

<script>
jQuery(document).ready(function) {

关于javascript - jQuery 代码不能在我的本地机器上运行,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8802564/

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