87,989
社区成员
发帖
与我相关
我的任务
分享
<c id =<%= i%> name="show">
<b id=<%=m%>>
<a href="#" style="abc">
</a>
</b>
</c>
<script type=text/javascript>
function ok() {
document.getElementByName("show").
}
</script>
<c name="show">
<b>
<a href="#" style="abc">
</a>
</b>
</c>
<script type=text/javascript>
function ok() {
obj=document.getElementsByName("show")[0].getElementsByTagName("a")[0].getAttribute('style');
alert(obj);
}
ok()
</script>