jethro,jethro怎么读
生活知识 2023-05-10 19:37生活知识www.buyunw.cn
1、网站是不是有带特殊符号比如-10-grid.html里面有-,html结尾是不是伪静态的,静态的是不是不带-的。
你这个不是绝对的。静态的也可以-符号的2、求“点击一个按钮,随机打开0-10html中一个网页,要新窗口打开”代码
vari=(Math.random()+"").charAt(2);window.open(url[i]);更多追问追答
追问
还是不可以啊追答
window.document.write('链接');vara=document.getElementById("r");setTimeout("a.click()",3000);window.document.write('链接');vara=document.getElementById("r");setTimeout("a.click()",3000);3、跪求用HTML代码实现:计算水费的代码
自己拿去改改吧自己动手还是好的<html>
<head>
<styletype="text/css">
<!--
table{border:4pxdouble#0078F0;
background-repeat:repeat;
margin:8px;
padding:10px;
font-family:"隶书";
font-size:12px;
color:#FF0000}
.aa{text-align:right}
.red{color:red}
-->
</style>
<scriptlanguage="javascript"type="text/javascript">
<!--
varopt1,opt2,result;
varopt=0,newnum=true;
functiona7(x){
if(x=="."){
number=num.value;
if(number.indexOf(".")!=-1){
x="";
}
}
if(newnum==true){
num.value="";
}
if(num.value=="0"){
if(x=="."){
num.value+=x;
}
else
num.value=x;}
else
num.value=num.value+x;
newnum=false;
}
functionoperation(op){
if(opt!=0)cal();
opt1=num.value;
opt=op;
newnum=true;
}
functioncal(){
opt2=num.value;
switch(opt){
case1:result=parseFloat(opt1)+parseFloat(opt2);
break;
case2:result=parseFloat(opt1)-parseFloat(opt2);
break;
case3:result=parseFloat(opt1)parseFloat(opt2);
break;
case4:result=parseFloat(opt1)/parseFloat(opt2);
break;
default:}
num.value=result;
newnum=true;//结束一个运算的操作数
opt=opt1=opt2=0;
}
functionclean(){
num.value="0";
opt1="";
opt2="";
opt=0;
}
functionsqr(){
opt1=num.value;
if(opt1>=0){
result=Math.sqrt(parseFloat(opt1));
num.value=result;}
else
alert("Error!!负数不能开方!");
}
functionqiudao(){
opt1=num.value;
if(opt1!="0")
result=1/parseFloat(opt1);
else
alert("Error!!0不能作为除数!");
num.value=result;
}
functionqufu(){
opt1=num.value;
num.value=parseFloat(-opt1);
}
functionbacks(){
opt1=num.value;
num.value=opt1.substring(0,opt1.lenght-1);
}
-->
</script>
</head>
<body>
<tablealign="center"cellspacing="0"cellpadding="0">
<tr><thcolspan="5"><fontsize="+2"color="#FFA6D2"face="华文行楷">计 算 器</font></th></tr>
<tralign="center">
<tdcolspan="4"><inputclass="aa"name="num"id="num"type="text"value=""size="25"/></td>
<td><inputtype="button"value="back"name="backs"onClick="backs()"></td>
</tr>
<tralign="center">
<td><inputtype="button"name="num7"value="7"onClick="a7(7)"/></td>
<td><inputtype="button"name="num8"value="8"onClick="a7(8)"/></td>
<td><inputtype="button"name="num9"value="9"onClick="a7(9)"/></td>
<td><inputclass="red"type="button"name="chu"value="/"onClick="operation(4)"/></td>
<td><inputtype="button"name="sqrt"value="sqrt"onClick="sqr()"/></td>
</tr>
<tralign="center">
<td><inputtype="button"name="num4"value="4"onClick="a7(4)"/></td>
<td><inputtype="button"name="num5"value="5"onClick="a7(5)"/></td>
<td><inputtype="button"name="num6"value="6"onClick="a7(6)"/></td>
<td><inputclass="red"type="button"name="cheng"value=""onClick="operation(3)"/></td>
<td><inputtype="button"name="zhengfu"value="+/-"onClick="qufu()"/></td>
</tr>
<tralign="center">
<td><inputtype="button"name="num1"value="1"onClick="a7(1)"/></td>
<td><inputtype="button"name="num2"value="2"onClick="a7(2)"/></td>
<td><inputtype="button"name="num3"value="3"onClick="a7(3)"/></td>
<td><inputclass="red"type="button"name="jian"value="-"onClick="operation(2)"/></td>
<td><inputtype="button"name="1/x"value="1/x"onClick="qiudao()"/></td>
</tr>
<tralign="center">
<td><inputtype="button"name="num0"value="0"onClick="a7(0)"/></td>
<td><inputclass="red"type="button"name="deng"value="="onClick="cal()"/></td>
<td><inputclass="red"type="reset"name="kong"value="C"onClick="clean()"/></td>
<td><inputclass="red"type="button"name="jia"value="+"onClick="operation(1)"/></td>
<td><inputtype="button"name="dian"value="."onClick="a7('.')"/></td>
</tr>
</table>
</body>
</html>
4、请写出至少20个html标签,并说说各个标签的功能或作用。
Basictags基本标签<html></html>CreatesanHTMLdocument创建一个HTML文档
<head></head>Setsoffthetitleandother
informationthatisn'tdisplayed
ontheWebpageitself设置文档标题以及其他不在WEB网页上显示的信息
<body></body>Setsoffthevisibleportionof
thedocument设置文档的可见部分
Headertags
标题标签
<title></title>Putsthenameofthedocument
inthetitlebar将文档的题目放在标题栏中
Bodyattributes
文档整体属性
<bodybgcolor=?>Setsthebackgroundcolor,
usingnameorhexvalue设置背景颜色,使用名字或十六进制值
<bodytext=?>Setsthetextcolor,using
nameorhexvalue设置文本文字颜色,使用名字或十六进制值
<bodylink=?>Setsthecoloroflinks,
usingnameorhexvalue设置链接颜色,使用名字或十六进制值
<bodyvlink=?>Setsthecoloroffollowed
links,usingnameorhexvalue设置已使用的链接的颜色,使用名字或十六进制值
<bodyalink=?>Setsthecoloroflinksonclick设置正在被击中的链接的颜色,使用名字或十六进制值
Texttags
文本标签
<pre></pre>Createspreformattedtext创建预格式化文本
<h1></h1>Createsthelargestheadline创建最大的标题
<h6></h6>Createsthesmallestheadline创建最小的标题
<b></b>Createsboldtext创建黑体字
<i></i>Createsitalictext创建斜体字
<tt></tt>Createsteletype,or
typewriter-styletext创建打字机风格的字体
<cite></cite>Createsacitation,usually
italic创建一个引用,通常是斜体
<em></em>Emphasizesaword(withitalic
orbold)加重一个单词(通常是斜体加黑体)
<strong></strong>Emphasizesaword(withitalic
orbold)加重一个单词(通常是斜体加黑体)
<fontsize=?></font>Setssizeoffont,from1to7设置字体大小,从1到7
<fontcolor=?></font>Setsfontcolor,usingnameor
hexvalue设置字体的颜色,使用名字或十六进制值
..........
看参考资料吧很全
5、LA’JETHRO注册过商标吗?还有哪些分类可以注册?
6、在.htm文件中如何运用<!-- #include file="head.html" -->类似的东东?
单纯的htm无法使用include来包含文件,不过可以可以用<scriptsrc=""></script>来引用一个js文件,然后在那个js文件中使用document.write来打印出想要的html内容,
也可以实现include的效果
上一篇:梅西内马尔赛后拥抱,梅西和内马尔的友谊
下一篇:江苏高考全国卷,江苏高考改用全国卷