<html>
<head>
<style>
#round{
width:300px
height:200px
}
</style>
</head>
<script>
var oDiv = document.getElementById('round')
oDiv.style.width = 400px //通过js改变这个div的宽度
</script>
<body>
<div id='round'>
<p>我是测试文字</p>
</div>
</body>
</html>
试试这个,有问题再问。<head>
<script type="text/javascript">
function edit(param){
var tempid = param.id.substring(2,5)
var tdObj = document.getElementById(tempid)
tdObj.innerHTML += "成功"
return tdObj.innerHTML
}
</script>
</head>
<body>
<table>
<tr><td id="td1">测试1</td><td><input id="b1td1" type="button" value="b1" onclick="alert(edit(this))"></td></tr>
<tr><td id="td2">测试2</td><td><input id="b2td2" type="button" value="b2" onclick="alert(edit(this))"></td></tr>
<tr><td id="td3">测试3</td><td><input id="b3td3" type="button" value="b3" onclick="alert(edit(this))"></td></tr>
<tr><td id="td4">测试4</td><td><input id="b4td4" type="button" value="b4" onclick="alert(edit(this))"></td></tr>
</table>
</body>
这么奇怪的需求。。。使用jquery:$("选择器").attr("type","text")原生JS:var tdinput= document.getElementById('tdinput')tdinput.setAttribute("type", "text")
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)