javascript有两种方法可以添加文本框:
使用innerHTML将某个元素的内容填充为文本框的HTML代码
用createElement("input")创建input标签节点→setAttribute()设置文本框属性→用appendChild()追加到一个已存在的元素
下面实例演示用第二种方法往表单中添加文本框:
1、HTML结构
<form><div id="test">
<input type="text" name="test"/>
</div>
<input type='button' value='添加' onclick="fun()"/>
</form>
2、javascript代码
function fun(){var ipt = document.createElement("input")
ipt.setAttribute("type","text")
ipt.setAttribute("name","test")
var div = document.getElementById("test")
div.appendChild(ipt)
}
3、效果演示
使用:.addClass('active').siblings().removeClass('active');即可
解释:给当前选中的增加边框.addClass('active')
给原先选中的取消边框.siblings().removeClass('active')
详细如下:
<style type="text/css">
.clr:after{clear:bothdisplay:blockoverflow:hiddenheight:0content:"."}
.clr{zoom:1}
.price{width:100%}
.price a{width:100pxheight:40pxline-height:40pxtext-align:centerbackground:#eeefloat:leftmargin:0 5pxdisplay:blockcursor:pointer}
.price a.active{border:1px solid red}
</style>
<div class="price clr">
<a>5元</a>
<a>10元</a>
<a>100元</a>
<a>200元</a>
</div>
<script type="text/javascript" src="引用jquery.js或zepto.js"></script>
<script type="text/javascript">
$(function(){
$('.price a').click(function(){
$(this).addClass('active').siblings().removeClass('active')
})
})
</script>
效果如下:
用到CSS样式和HTML标签元素,为了对html不同标签加边框虚线,我们选择几个常用标签对齐设置边框虚线效果.
1、html常用标签:p标签spanullitabletrtd
2、实例用到CSS属性单词:borderwidthheight
3、实现虚线的CSS重点介绍
border为边框属性,如果要实现对象边框效果,要设置边框宽度、边框颜色、边框样式(实线还是虚线).
border:1pxdashed#F00这个就是设置边框样式宽度为1px虚线,虚线为红色.