我需要使用javascript禁用img标记。什么是javascript代码?
示例:
<img id='hrefId' src="/proteus/images/button_find.gif" alt="" />
请帮帮我
答案 0 :(得分:3)
这里假设您的意思是“隐藏”
<style type="text/css">
.disabled
{
display:none;
}
</style>
<img id='hrefId' src="/proteus/images/button_find.gif" alt="" />
<script languae="javascript">
var myPicture= document.getElementById('hrefId');
myPicture.className = "disabled";
</script>
答案 1 :(得分:0)
使用jQuery,您可以隐藏图像:$("#hrefId").hide()
或添加一个CSS类,将其设置为禁用:$("#hrefId").addClass("disabled")
...
答案 2 :(得分:-1)
document.getElementById('headname'+(t)).disabled=true;
document.getElementById('headname'+(t)).setAttribute("class","disabledcombo");
document.getElementById('img'+(t)).src='../images/editfin.gif' ;
document.getElementById('new'+(t)).src='../images/adds1.png' ;
document.getElementById('new'+(t)).className = "disabled";