html怎么调用js里面的东西,例如js里面的函数
functionguest(){varhours=now.getHours();if(hours>=0&&hour<=6){document.write("夜深了,该睡觉...
function guest(){
var hours = now.getHours();
if(hours >= 0 && hour <= 6){
document.write("夜深了,该睡觉了!");
}else if(hours >= 6 && hours <=11){
document.write("早上好:");
}else if(hours >= 11 && hours <= 13){
document.write("中午好:");
}else if(hours >= 13 && hours <= 17){
document.write("下午好:");
}else if(hours >= 17 && hours <= 19){
document.write("傍晚好:");
}else if(hours >= 19 && hours <= 23){
document.write("晚上好:");
}else{
document.write("睡觉时间到了");
}
document.getElementById("guest");
}
这是js里面的函数,怎么在php文件里调用它,还有这个getElementById是什么?
document.getElementsByName
document.getElementsByTagName
document.getElementsByTagNameNS
这些都不清楚! 展开
var hours = now.getHours();
if(hours >= 0 && hour <= 6){
document.write("夜深了,该睡觉了!");
}else if(hours >= 6 && hours <=11){
document.write("早上好:");
}else if(hours >= 11 && hours <= 13){
document.write("中午好:");
}else if(hours >= 13 && hours <= 17){
document.write("下午好:");
}else if(hours >= 17 && hours <= 19){
document.write("傍晚好:");
}else if(hours >= 19 && hours <= 23){
document.write("晚上好:");
}else{
document.write("睡觉时间到了");
}
document.getElementById("guest");
}
这是js里面的函数,怎么在php文件里调用它,还有这个getElementById是什么?
document.getElementsByName
document.getElementsByTagName
document.getElementsByTagNameNS
这些都不清楚! 展开
2个回答
展开全部
html调用js函数,有多种方法:
1、可以用控件本身进行;
如 <input type="text" onchange="javascript:guest();">
2、通过javascript 中 的 时间控件 定时执行;
3、getElementById,实际上得到一个网页中的对象(元素),通过ID检索。
<input id="guest" type="text" onchange="javascript:guest();">
document.getElementById("guest")语句到<input>;
document.getElementById("guest").value="dddddd";
将<input> 中进行赋值"dddddd";
4、document.getElementsByName
document.getElementsByTagName
document.getElementsByTagNameNS
也是检索网页中的元素,只不过是通过不同的检索方式,检索方式分别为name,TagName等。
1、可以用控件本身进行;
如 <input type="text" onchange="javascript:guest();">
2、通过javascript 中 的 时间控件 定时执行;
3、getElementById,实际上得到一个网页中的对象(元素),通过ID检索。
<input id="guest" type="text" onchange="javascript:guest();">
document.getElementById("guest")语句到<input>;
document.getElementById("guest").value="dddddd";
将<input> 中进行赋值"dddddd";
4、document.getElementsByName
document.getElementsByTagName
document.getElementsByTagNameNS
也是检索网页中的元素,只不过是通过不同的检索方式,检索方式分别为name,TagName等。
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询