如何修改radio后的label内容
<input type="radio" name="aa" value="0" index="0" id="L0">
<label for="L0">temp</label>
如何在javascrip中设置label的值
<label for="L0">temp</label>
如何在javascrip中设置label的值
...全文
请发表友善的回复…
发表回复
pnutz 2002-11-15
- 打赏
- 举报
建议rion10()去卖B!!!
>>>>>>>>>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>>>>>>>>>>
庆祝您老卖B成功
!
>>>>>>>>>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>>>>>>>>>>
>>>>>>>>>>>>>>>>>>>>>>>>>>>
庆祝您老卖B成功
!
rion10 2002-11-15
- 打赏
- 举报
flashsoft2000(FS2K) 大侠看留言
flashsoft2000 2002-11-15
- 打赏
- 举报
最上面的代码是对的呀
rion10 2002-11-15
- 打赏
- 举报
报错阿
说document.all(...)对象不存在
help
说document.all(...)对象不存在
help
flashsoft2000 2002-11-15
- 打赏
- 举报
也可以用
这个
<input type="radio" name="aa" value="0" index="0" id="L0"><label for="L0">temp</label>
<input type=button onclick="document.all.aa.nextSibling.innerText='pmet'">
因为
label和input之间不会有其他元素
所以上面的也可以
但是\不推荐
这个
<input type="radio" name="aa" value="0" index="0" id="L0"><label for="L0">temp</label>
<input type=button onclick="document.all.aa.nextSibling.innerText='pmet'">
因为
label和input之间不会有其他元素
所以上面的也可以
但是\不推荐
希默软件 2002-11-15
- 打赏
- 举报
document.all.aa.sourceIndex获得元素aa在document.all集合中的顺序号,加一就是下一元素的顺序号
huangyq 2002-11-15
- 打赏
- 举报
Up
希默软件 2002-11-15
- 打赏
- 举报
document.all.aa.sourceIndex+1
妙!!
妙!!
rion10 2002-11-15
- 打赏
- 举报
document.all.aa.sourceIndex+1是什么东西?
flashsoft2000 2002-11-15
- 打赏
- 举报
是的哦
<input type="radio" name="aa" value="0" index="0" id="L0"><label for="L0">temp</label>
<input type=button onclick="document.all(document.all.aa.sourceIndex+1).innerText='pmet'">
<input type="radio" name="aa" value="0" index="0" id="L0"><label for="L0">temp</label>
<input type=button onclick="document.all(document.all.aa.sourceIndex+1).innerText='pmet'">
希默软件 2002-11-15
- 打赏
- 举报
innerText?