HTML5格式化文本标记分几类

HTML5格式化文本标记分几类,第1张

今天我们来说说html中的文本格式化标签。这种标签和我们在word当中了解过的一些知识相似。

比如word中有字体加粗,我们文本格式化标签也能做到,只需要使用标签<b>就能实现。斜体文字我们用<i>来表示。

<big>和<small>两个标签和基础标签里的<h1>~<h6>差不多。是字体大小的一个标签。<sub>和<sup>是上标字和下标字。<ins>是插入字,<del>是删除字。

?<em>定义是着重文字,<storng>是加重语气。这两个标签都是为了突出重点的标签。在文本格式化标签里还有一些标签是可以让其他标签代替的。

比如<s>和<strike>标签可以用<del>标签来代替。<u>标签可以用<style>这个标签来代替。所以html中的文本格式化标签基本是用于文字设置方面的,接下来大家可以试验一下。在html中这些都是需要大家掌握的基础,还希望大家进行理解性的记忆,

如果单单HTML5 *** 作的话,第一次输入文本框的内容通过文本框节点的value拿到结果,然后在文本框上面建立个DIV,把拿到的value值放到DIV节点的innerHTML里面就可以了,但是这是一次性的,第二次就打开网页DIV里面就没值了。

如果要做成论坛发帖形式,那就要重复上面的一些 *** 作,先拿到testarea里面的value,然后通过get或者post到后端php,由php拿到值后放入数据库中。最后每次加载网页时,DIV里面的值就可以通过后端PHP到数据库里面去取。

输入框景背景透明:

<input style="background:transparentborder:1px solid #ffffff">

鼠标划过输入框,输入框背景色变色:

<INPUT value="Type here" NAME="user_pass" TYPE="text" SIZE="29" onmouseover="this.style.borderColor='black'this.style.backgroundColor='plum'"

style="width: 106height: 21"

onmouseout="this.style.borderColor='black'this.style.backgroundColor='#ffffff'" style="border-width:1pxborder-color=black">

输入字时输入框边框闪烁(边框为小方型):

<Script Language="JavaScript">

function borderColor(){

if(self['oText'].style.borderColor=='red'){

self['oText'].style.borderColor = 'yellow'

}else{

self['oText'].style.borderColor = 'red'

}

oTime = setTimeout('borderColor()',400)

}

</Script>

<input type="text" id="oText" style="border:5px dotted redcolor:red" onfocus="borderColor(this)" onblur="clearTimeout(oTime)">

输入字时输入框边框闪烁(边框为虚线):

<style>

#oText{border:1px dotted #ff0000ryo:expression_r(onfocus=function light (){with(document.all.oText){style.borderColor=(style.borderColor=="#ffee00"?"#ff0000":"#ffee00")timer=setTimeout(light,500)}},onblur=function(){this.style.borderColor="#ff0000"clearTimeout(timer)})}

</style>

<input type="text" id="oText">

自动横向廷伸的输入框:

<input type="text" style="huerreson:expression_r(this.width=this.scrollWidth)" value="abcdefghijk">

自动向下廷伸的文本框:

<textarea name="content" rows="6" cols="80" onpropertychange="if(this.scrollHeight>80) this.style.posHeight=this.scrollHeight+5">输入几个回车试试</textarea>

只有下划线的文本框:

<input style="border:0border-bottom:1 solid blackbackground:">

软件序列号式的输入框:

<script for="T" event="onkeyup">

if(value.length==3)document.all[event.srcElement.sourceIndex+1].select()

</script>

<input name="T" size="5" maxlength="3">—<input name="T" size="5" maxlength="3">—<input name="T" size="5" maxlength="3">—<input name="T" size="5" maxlength="3">—<input name="T" size="5" maxlength="3">—<input name="T7" size="5" maxlength="3">

软件序列号式的输入框(完整版):

<script for="T" event="onkeyup">if(value.length==maxLength)document.all[event.srcElement.sourceIndex+1].focus()</script>

<script for="T" event="onfocus">select()</script>

<script for="Submit" event="onclick">

var sn=new Array()

for(i=0i<T.lengthi++)

sn=T.value

alert(sn.join("—"))

</script>

<input name="T" size="5" maxlength="3">—<input name="T" size="5" maxlength="3">—<input name="T" size="5" maxlength="3">—<input name="T" size="5" maxlength="3">—<input name="T" size="5" maxlength="3">—<input name="T" size="5" maxlength="3">

<input type="submit" name="Submit">


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

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

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

发表评论

登录后才能评论

评论列表(0条)

保存