兩個日曆不顯示在一個php文件中。場景是低於php:兩個日曆不顯示
我有一個php文件名temp
。在這裏我想顯示兩個日曆(上個月和下個月)。
<!DOCTYPE html>
<html >
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Untitled Document</title>
<link rel="stylesheet" type="text/css" href="style.css" />
</head>
<body>
<div id="left1"><?php include('calendar_previous.php');?></div>
<div id="right1"><?php include('calendar_next.php');?>hello</div>
</body>
</html>
我calendar_previous.php
是
<!DOCTYPE html>
<html>
<head>
<script type="text/javascript" src="css/datetimepicker_css.js"></script>
<meta http-equiv="Content-Type" content="text/html; charset=windows-1252" />
<title>BuildUp Real Estate</title>
<link rel="stylesheet" type="text/css" href="style.css" />
<link rel="stylesheet" type="text/css" href="admin.css" />
<link rel="stylesheet" type="text/css" media="all" href="jsDatePick_ltr.min.css" />
<script type="text/javascript" src="css/jquery.1.4.2.js"></script>
<script type="text/javascript" src="css/jsDatePick_prev.jquery.min.1.3.js"></script>
<script type="text/javascript">
window.onload = function(){
g_globalObject = new JsDatePick({
useMode:1,
isStripped:true,
target:"inputField1"
});
g_globalObject.setOnSelectedDelegate(function(){
var obj = g_globalObject.getSelectedDay();
alert("a date was just selected and the date is : " + obj.day + "/" + obj.month + "/" + obj.year);
document.getElementById("div3_example_result").innerHTML = obj.day + "/" + obj.month + "/" + obj.year;
});
};
</script>
</head>
<body>
<div id="inputField1"></div>
</body>
</html>
我calendar_next.php
幾乎是用JavaScript
<script type="text/javascript" src="css/jquery.1.4.4.js"></script>
<script type="text/javascript" src="css/jsDatePick_next.jquery.min.1.3.js"></script>
當我打電話calendar_previous.php
和calendar_next.php
分開它顯示一個和下一個月份的兩個差相同,以calendar_previous.php
正常。但是,當我在temp.php
不同的div
中包含這兩個php文件時,只顯示一個日曆。我想在temp.php
中顯示兩個不同的日曆div
。
任何幫助表示感謝。
有你的目標應用兩個獨立像1個目標:「inputField1」和2目標:「inputField2」 – gaurang171
@ keyuratcodebins.com目標是分開的,但沒有工作 –
的目標應該是獨立和日期選擇器的對象應該是獨立的像g_globalObject1爲第1頁,g_globalObject2爲第2頁。希望這會有所幫助。 – gaurang171