HTML如何表示商标?

HTML如何表示商标?,第1张

HTML语言中,表示商标™用™表示,实体名称是&trade,实体编号为™。

HTML中,™使用™显示,R用®显示。R是“注册商标”的标记,意思是该商标已在国家商标局进行注册申请并已经商标局审查通过,成为注册商标。®是英文register注册的开头字母。注册商标具有排他性、独占性、唯一性等特点,属于注册商标所有人所独占,受法律保护,任何企业或个人未经注册商标所有权人许可或授权,均不可自行使用,否则将承担侵权责任。 用TM则是商标符号的意思,即标注TM的文字、图形或符号是商标,但不一定已经注册(未经注册的不受法律保护)。TM是英文trademark的缩写。

HTML中有用的字符实体:

HTML字符实体(Character Entities),转义字符串(Escape Sequence)。

//闲着,码段代码玩

(function(){

var div=document.createElement("div")

,create=document.createElement("input")

,tm=document.createElement("div")

,score=document.createElement("div")

,exp=[{js:"+",w:"+"},{js:"-",w:"-"},{js:"*",w:"×"},{js:"/",w:"÷"}]

//出题

function ct(){

score.innerHTML="开始做题吧"

score.style.color="#000"

tm.innerHTML=""

tm.list=[]

for(var i=0i<10i++){

var s=document.createElement("span")

,p=document.createElement("input")

,jg=document.createElement("span")

,rnd=parseInt(Math.random()*4)

,v1=parseInt(Math.random()*1000)//千以内

,v2=exp[rnd]

,v3=parseInt(Math.random()*1000)

//除法,规范数值

if(rnd==3){

while(v3==0){

v3=parseInt(Math.random()*1000)

}

//寻找整除

if(v1<v3){

var t=v3

v3=v1

v1=t

}

if(Math.random()*10>5 && v1/v3<v3){//一半几率调整除数与被除数的间隔

v3=parseInt(v3/3)+1

}

if(v1%v3!=0){

v1-=v1%v3

}

}

s.innerText=v1+v2.w+v3+"="

p.type="text"

p.style.width="80px"

p._value=eval(v1+v2.js+v3)+""

p.jg=jg

p.onblur=js

tm.appendChild(s)

tm.appendChild(p)

tm.appendChild(jg)

tm.appendChild(document.createElement("br"))

tm.list.push(p)

}

}

//出题按钮

create.type="button"

create.value="出题"

create.onclick=ct

//显示界面

div.appendChild(create)

div.appendChild(tm)

div.appendChild(score)

document.body.appendChild(div)

//显示题目

ct()

//计算结果

function js(e){

var o=e.target

//答案错误提示部分

if(o.value==o._value){

o.jg.innerHTML="对"

o.jg.style.color="blue"

}else if(o.value!=""){

o.jg.innerHTML="错"

o.jg.style.color="red"

}else{

o.jg.innerHTML=""

}

var count=0,ecount=0,wzcount=0

for(var i=0i<tm.list.lengthi++){

o=tm.list[i]

if(o.value==o._value){

count++

}else if(o.value!=""){

ecount++

}else{

wzcount++

}

}

score.style.color="#000"

if(wzcount==0){

if(count==10){

score.innerHTML="满分100"

score.style.color="blue"

}else if(count>5){

score.innerHTML=count*10+"分,加油,改正小错误"

}else{

score.innerHTML=count*10+"分,好挫"

score.style.color="red"

}

for(var i=0i<tm.list.lengthi++){

o=tm.list[i]

o.jg.innerHTML=o._value

}

}else if(wzcount<4){

score.innerHTML="冲啊"

}else if(wzcount<6){

score.innerHTML="快点,就好了"

}else{

score.innerHTML="沉着冷静"

}

}

})()


欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/7622426.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2023-04-07
下一篇 2023-04-07

发表评论

登录后才能评论

评论列表(0条)

保存