这样一个日历js,加入进一个aspx中,为什么aspx中的控件无法使用它呢!报错总是“缺少对象”!马上结贴,高手请看,急!!!

dicklee1214 2009-05-11 09:33:51
js为了测试放在与aspx同一个目录下!aspx中调用方式如下
<head runat="server">
<title>aspx</title>
<script src="calendar_YandM.js" type="text/javascript"></script>
</head>

。。。。。。。

<asp:TextBox ID="TextBox3" runat="server" onclick="fPopCalendar(TextBox3,TextBox3,'2011-10-01');return false"></asp:TextBox>
...全文
265 25 打赏 收藏 转发到动态 举报
写回复
用AI写文章
25 条回复
切换为时间正序
请发表友善的回复…
发表回复
xutao888 2009-05-13
  • 打赏
  • 举报
回复
检查以下是不是被最顶上的一行国际化代码和谐了?
lude8880 2009-05-13
  • 打赏
  • 举报
回复
onCLIENTclick="fPopCalendar('TextBox3','TextBox3','2011-10-01');
chenyunkun2008 2009-05-13
  • 打赏
  • 举报
回复
[Quote=引用 22 楼 ojlovecd 的回复:]
试了一下你的代码,知道你错在哪里了,函数名是fPopCalendarYandM
你看看你少了后面那个YandM
[/Quote]

差 不多
我姓区不姓区 2009-05-13
  • 打赏
  • 举报
回复
试了一下你的代码,知道你错在哪里了,函数名是fPopCalendarYandM
你看看你少了后面那个YandM
zzxap 2009-05-13
  • 打赏
  • 举报
回复
onclick="fPopCalendar('TextBox3','TextBox3','2011-10-01');
gyouyang 2009-05-13
  • 打赏
  • 举报
回复
板凳
MadeInTexas 2009-05-13
  • 打赏
  • 举报
回复
关注
dicklee1214 2009-05-13
  • 打赏
  • 举报
回复
function fToggleTagsYandM(){
with (document.all.tags("SELECT")){
for (i=0; i<length; i++)
if ((item(i).Victor!="Won")&&fTagInBoundYandM(item(i))){
item(i).style.visibility = "hidden";
goSelectTag[goSelectTag.length] = item(i);
}
}
}

function fTagInBoundYandM(aTag){
with (VicPopCal.style){
var l = parseInt(left);
var t = parseInt(top);
var r = l+parseInt(width);
var b = t+parseInt(height);
var ptLT = fGetXYYandM(aTag);
return !((ptLT.x>r)||(ptLT.x+aTag.offsetWidth<l)||(ptLT.y>b)||(ptLT.y+aTag.offsetHeight<t));
}
}

function fGetXYYandM(aTag){
var oTmp = aTag;
var pt = new PointYandM(0,0);
do {
pt.x += oTmp.offsetLeft;
pt.y += oTmp.offsetTop;
oTmp = oTmp.offsetParent;
} while(oTmp.tagName!="BODY");
return pt;
}

// Main: popCtrl is the widget beyond which you want this calendar to appear;
// dateCtrl is the widget into which you want to put the selected date.
// i.e.: <input type="text" name="dc" style="text-align:center" readonly><INPUT type="button" value="V" onclick="fPopCalendarYandM(dc,dc);return false">
function fPopCalendarYandM(popCtrl, dateCtrl,strDate){
if (popCtrl == previousObject){
if (VicPopCal.style.visibility == "visible"){
HiddenDivYandM();
return true;
}

}
previousObject = popCtrl;
gdCtrl = dateCtrl;
fInitialDateYandM(strDate);
fSetYearMonYandM(giYear, giMonth);
var point = fGetXYYandM(popCtrl);
with (VicPopCal.style) {
left = point.x;
top = point.y+popCtrl.offsetHeight;
width = VicPopCal.offsetWidth;
width = 196; // Added by Danian Zhang/SUI
height = VicPopCal.offsetHeight;
fToggleTagsYandM(point);
visibility = 'visible';
}
}

// Added by Danian Zhang/SUI
function fInitialDateYandM(strDate){
if( strDate == null || strDate.length != 10 )
return false;

var sYear = strDate.substring(0,4);
var sMonth = strDate.substring(5,7);
var sDay = strDate.substring(8,10);

if( sMonth.charAt(0) == '0' ) { sMonth = sMonth.substring(1,2); }
if( sDay.charAt(0) == '0' ) { sDay = sDay.substring(1,2); }

var nYear = parseInt(sYear );
var nMonth = parseInt(sMonth);
var nDay = parseInt(sDay );

if ( isNaN(nYear ) ) return false;
if ( isNaN(nMonth) ) return false;
if ( isNaN(nDay ) ) return false;

var arrMon = new Array(12);
arrMon[ 0] = 31; arrMon[ 1] = nYear % 4 == 0 ? 29:28;
arrMon[ 2] = 31; arrMon[ 3] = 30;
arrMon[ 4] = 31; arrMon[ 5] = 30;
arrMon[ 6] = 31; arrMon[ 7] = 31;
arrMon[ 8] = 30; arrMon[ 9] = 31;
arrMon[10] = 30; arrMon[11] = 31;

if ( nYear < 1900 || nYear > 2100 ) return false;
if ( nMonth < 1 || nMonth > 12 ) return false;
if ( nDay < 1 || nDay > arrMon[nMonth - 1] ) return false;

giYear = nYear;
giMonth = nMonth;
giDay = nDay;
return true;
}

// "","2"
//var gMonths = new Array("1","2","3","4","5","6","7","8");
var gMonths = new Array("一月","二月","三月","四月","五月","六月","七月","八月","九月","十月","十一月","十二月");

with (document) {
write("<Div id='VicPopCal' style='OVERFLOW:hidden;POSITION:absolute;VISIBILITY:hidden;border:2px ridge;z-index:100;'>");
write("<table border='0' bgcolor='#cccccc'>");
write("<TR>");
write("<td valign='middle' align='center'><input type='button' name='PrevMonth' value='<' style='height:20;width:20;FONT:bold' onClick='fPrevMonthYandM()'>");
write(" <SELECT name='tbSelYear' onChange='fUpdateCalYandM(tbSelYear.value, tbSelMonth.value)' Victor='Won'>");
for(i=1900;i<2050;i++)
write("<OPTION value='"+i+"'>"+i+" 年</OPTION>");
write("</SELECT>");
write(" <select name='tbSelMonth' onChange='fUpdateCalYandM(tbSelYear.value, tbSelMonth.value)' Victor='Won'>");
for (i=0; i<12; i++)
write("<option value='"+(i+1)+"'>"+gMonths[i]+"</option>");
write("</SELECT>");
write(" <input type='button' name='PrevMonth' value='>' style='height:20;width:20;FONT:bold' onclick='fNextMonthYandM()'>");
write("</td>");
write("</TR><TR>");
write("<td align='center'>");
write("<DIV style='background-color:teal'><table width='100%' border='0'>");
fDrawCalYandM(giYear, giMonth, 20, '12');
write("</table></DIV>");
write("</td>");
write("</TR><TR><TD align='center'>");
write("<TABLE width='100%'><TR><TD align='center'>");
write("<B style='cursor:hand' onclick='fSetDateYandM(0,0,0)' onMouseOver='this.style.color=gcToggle' onMouseOut='this.style.color=0'>清空</B>");
write("</td><td algin='center'>");
write("<B style='cursor:hand' onclick='fSetDateYandM(giYear,giMonth,giDay)' onMouseOver='this.style.color=gcToggle' onMouseOut='this.style.color=0'>今天: "+giYear+"-"+giMonth+"-"+giDay+"</B>");
write("</td></tr></table>");
write("</TD></TR>");
write("</TABLE></Div>");
}

//mask N.
function maskNYandM(){
//ALERT(event.keyCode)
var masKey = 78;
if(event.keyCode==masKey&&event.ctrlKey){
event.returnValue=0;
window.event.returnValue=0;
}
}
//<!-- ============== Browser Detect ============== -->
function isIEYandM(){
browser_name = navigator.appName;
if (browser_name == "Microsoft Internet Explorer") {
return true;
}
return false;
}

function isIE2YandM(){
if(document.all){
return true;
}
return false;
}

function isNCYandM(){
browser_name = navigator.appName;
if(browser_name == "Netscape"){
return true;
}
return false;
}

function isNC2YandM(){
if(document.layers){
return true;
}
return false;
}

function versionYandM(){
return parseFloat(navigator.appVersion);
}

//<!-- ============== Eneter Control ============== -->
var LastTabObjectName="";
var FirstTabObjectName="";


function handleEnterYandM(){
var hotkey=13
if (isNCYandM()){//NC
document.captureEvents(Event.KEYDOWN)
}
document.onkeydown=myKeyEventYandM
//markRightClick();
}


function myKeyEventYandM(e){
var hotkey=13;
var rightKey = 39;
var leftKey = 41;

if (isNCYandM()){//NC
if(e.which==hotkey){
e.which=9;
return true;
//nextFocus(e.target);
}
}else if (isIEYandM()){//IE
if (event.keyCode==hotkey){
if(LastTabObjectName.length>0 && !event.shiftKey && event.srcElement.name==LastTabObjectName){
event.keyCode=0;
eval("document.all."+FirstTabObjectName+".focus()");
return false;
}else if(FirstTabObjectName.length>0 && event.shiftKey && event.srcElement.name==FirstTabObjectName){
event.keyCode=0;
eval("document.all."+LastTabObjectName+".focus()");
return false;
}else{
//alert(event.srcElement.name);
if(event.srcElement.type!="textarea")
event.keyCode=9;
return true;
// nextFocus(event.srcElement);
}
}
if (event.keyCode==rightKey){
if(LastTabObjectName.length>0 && !event.shiftKey && event.srcElement.name==LastTabObjectName){
event.keyCode=0;
eval("document.all."+FirstTabObjectName+".focus()");
return false;
}else if(FirstTabObjectName.length>0 && event.shiftKey && event.srcElement.name==FirstTabObjectName){
event.keyCode=0;
eval("document.all."+LastTabObjectName+".focus()");
return false;
}else{
//alert(event.srcElement.name);
event.keyCode=9;
return true;
// nextFocus(event.srcElement);
}
}
}
}

//init
handleEnterYandM();
我姓区不姓区 2009-05-13
  • 打赏
  • 举报
回复
会不会是编码的问题,你指定一下编码试试:
<script src="calendar_YandM.js" type="text/javascript" charset="utf-8"> </script>

不知道你js文件是什么编码,以utf-8为例了
dicklee1214 2009-05-13
  • 打赏
  • 举报
回复
这是.js文件
function getNowDateYandM()
{
var nn=new Date();
year1=nn.getYear();
mon1=nn.getMonth()+1;
date1=nn.getDate();
var monstr1;
var datestr1
if(mon1<10)
monstr1="0"+mon1;
else
monstr1=""+mon1;

if(date1<10)
datestr1="0"+date1;
else
datestr1=""+date1;
return year1+"-"+monstr1+"-"+datestr1;
}
function getlastweekDateYandM()
{
var nn=new Date();
year1=nn.getYear();
mon1=nn.getMonth()+1;
date1=nn.getDate();

var mm=new Date(year1,mon1-1,date1);
var tmp1=new Date(2000,1,1);
var tmp2=new Date(2000,1,15);
var ne=tmp2-tmp1;
var mm2=new Date();
mm2.setTime(mm.getTime()-ne);


year2=mm2.getYear();
mon2=mm2.getMonth()+1;
date2=mm2.getDate();


if(mon2<10)
monstr2="0"+mon2;
else
monstr2=""+mon2;

if(date2<10)
datestr2="0"+date2;
else
datestr2=""+date2;


return year2+"-"+monstr2+"-"+datestr2;
}

var gdCtrl = new Object();
var goSelectTag = new Array();
var gcGray = "#808080";
var gcToggle = "#FB8664";
var gcBG = "#e5e6ec";
var previousObject = null;

var gdCurDate = new Date();
var giYear = gdCurDate.getFullYear();
var giMonth = gdCurDate.getMonth()+1;
var giDay = gdCurDate.getDate();

function fSetDateYandM(iYear, iMonth, iDay){
VicPopCal.style.visibility = "hidden";
if ((iYear == 0) && (iMonth == 0) && (iDay == 0)){
gdCtrl.value = "";
}else{
iMonth = iMonth + 100 + "";
iMonth = iMonth.substring(1);
iDay = iDay + 100 + "";
iDay = iDay.substring(1);
if(gdCtrl.tagName == "INPUT"){
gdCtrl.value = iYear+"-"+iMonth;
Form1.submit();
}else{
gdCtrl.innerText = iYear+"-"+iMonth;
Form1.submit();
//修改反馈到input控件中的值的格式在这里 update by 李宇锋 2004-08-20
}
}

for (i in goSelectTag)
goSelectTag[i].style.visibility = "visible";
goSelectTag.length = 0;

window.returnValue=gdCtrl.value;
//window.close();

}

function HiddenDivYandM()
{
var i;
VicPopCal.style.visibility = "hidden";
for (i in goSelectTag)
goSelectTag[i].style.visibility = "visible";
goSelectTag.length = 0;

}
function fSetSelectedYandM(aCell){
var iOffset = 0;
var iYear = parseInt(tbSelYear.value);
var iMonth = parseInt(tbSelMonth.value);

aCell.bgColor = gcBG;
with (aCell.children["cellText"]){
var iDay = parseInt(innerText);
if (color==gcGray)
iOffset = (Victor<10)?-1:1;
iMonth += iOffset;
if (iMonth<1) {
iYear--;
iMonth = 12;
}else if (iMonth>12){
iYear++;
iMonth = 1;
}
}
fSetDateYandM(iYear, iMonth, iDay);
}

function PointYandM(iX, iY){
this.x = iX;
this.y = iY;
}

function fBuildCalYandM(iYear, iMonth) {
var aMonth=new Array();
for(i=1;i<7;i++)
aMonth[i]=new Array(i);

var dCalDate=new Date(iYear, iMonth-1, 1);
var iDayOfFirst=dCalDate.getDay();
var iDaysInMonth=new Date(iYear, iMonth, 0).getDate();
var iOffsetLast=new Date(iYear, iMonth-1, 0).getDate()-iDayOfFirst+1;
var iDate = 1;
var iNext = 1;

for (d = 0; d < 7; d++)
aMonth[1][d] = (d<iDayOfFirst)?-(iOffsetLast+d):iDate++;
for (w = 2; w < 7; w++)
for (d = 0; d < 7; d++)
aMonth[w][d] = (iDate<=iDaysInMonth)?iDate++:-(iNext++);
return aMonth;
}

function fDrawCalYandM(iYear, iMonth, iCellHeight, sDateTextSize) {
var WeekDay = new Array("日","一","二","三","四","五","六");
var styleTD = " bgcolor='"+gcBG+"' bordercolor='"+gcBG+"' valign='middle' align='center' height='"+iCellHeight+"' style='font:bold arial "+sDateTextSize+";"; //Coded by Liming Weng(Victor Won) email:victorwon@sina.com

with (document) {
write("<tr>");
for(i=0; i<7; i++){
write("<td "+styleTD+"color:#990099' >"+ WeekDay[i] + "</td>");
}
write("</tr>");

for (w = 1; w < 7; w++) {
write("<tr>");
for (d = 0; d < 7; d++) {
write("<td id=calCell "+styleTD+"cursor:hand;' onMouseOver='this.bgColor=gcToggle' onMouseOut='this.bgColor=gcBG' onclick='fSetSelectedYandM(this)'>");
write("<font id=cellText Victor='Liming Weng'> </font>");
write("</td>")
}
write("</tr>");
}
}
}

function fUpdateCalYandM(iYear, iMonth) {
myMonth = fBuildCalYandM(iYear, iMonth);
var i = 0;
for (w = 0; w < 6; w++)
for (d = 0; d < 7; d++)
with (cellText[(7*w)+d]) {
Victor = i++;
if (myMonth[w+1][d]<0) {
color = gcGray;
innerText = -myMonth[w+1][d];
}else{
color = ((d==0)||(d==6))?"red":"black";
innerText = myMonth[w+1][d];
}
}
}

function fSetYearMonYandM(iYear, iMon){
tbSelMonth.options[iMon-1].selected = true;
for (i = 0; i < tbSelYear.length; i++)
if (tbSelYear.options[i].value == iYear)
tbSelYear.options[i].selected = true;
fUpdateCalYandM(iYear, iMon);
}

function fPrevMonthYandM(){
var iMon = tbSelMonth.value;
var iYear = tbSelYear.value;

if (--iMon<1) {
iMon = 12;
iYear--;
}

fSetYearMonYandM(iYear, iMon);
}

function fNextMonthYandM(){
var iMon = tbSelMonth.value;
var iYear = tbSelYear.value;

if (++iMon>12) {
iMon = 1;
iYear++;
}

fSetYearMonYandM(iYear, iMon);
}
dicklee1214 2009-05-13
  • 打赏
  • 举报
回复
js是几年前我在用.net1.0开发时使用过的,载入.js文件和调用文件内的方法的代码也是几乎完全拷贝过来的!!!而且我试过,如果把这个日历控件内的代码拷贝到这个aspx文件下的<script>。。。</script>中,就可以调用!但是没听说.net2.0对于载入js文件有什么和1.0不一样的要求啊!<script src="calendar_YandM.js" type="text/javascript"> </script> 这样应该是对的吧!?
aspnetblp 2009-05-12
  • 打赏
  • 举报
回复
定一下
mengxj85 2009-05-11
  • 打赏
  • 举报
回复
JS调试看看
yyq136 2009-05-11
  • 打赏
  • 举报
回复
可以将<asp:TextBox ID="TextBox3" runat="server" onclick="fPopCalendar(TextBox3,TextBox3,'2011-10-01');return false"> </asp:TextBox>
改成<asp:TextBox ID="TextBox3" runat="server" onclick="fPopCalendar(event.srcElement.id,event.srcElement.id,'2011-10-01');return false"> </asp:TextBox>
yyq136 2009-05-11
  • 打赏
  • 举报
回复
问题应该就出在TextBox3上
TextBox的ID 解析到Html中后不再是TextBox3了,具体看解析后的Html源码
Hemingway718 2009-05-11
  • 打赏
  • 举报
回复
UP
zucc_sjj 2009-05-11
  • 打赏
  • 举报
回复

this.TextBox3.Attribute.Add("onclick","调用的方法名");
nujiah001 2009-05-11
  • 打赏
  • 举报
回复
调试方法
xsm545 2009-05-11
  • 打赏
  • 举报
回复
帮顶
gzto020 2009-05-11
  • 打赏
  • 举报
回复
this.extBox3.attribute.add("onclick","js");
加载更多回复(5)

62,047

社区成员

发帖
与我相关
我的任务
社区描述
.NET技术交流专区
javascript云原生 企业社区
社区管理员
  • ASP.NET
  • .Net开发者社区
  • R小R
加入社区
  • 近7日
  • 近30日
  • 至今
社区公告

.NET 社区是一个围绕开源 .NET 的开放、热情、创新、包容的技术社区。社区致力于为广大 .NET 爱好者提供一个良好的知识共享、协同互助的 .NET 技术交流环境。我们尊重不同意见,支持健康理性的辩论和互动,反对歧视和攻击。

希望和大家一起共同营造一个活跃、友好的社区氛围。

试试用AI创作助手写篇文章吧