我有以下输入字段:
<input type="image" name="Submit" src="Images/FormButtons/SubmitButton.gif" />
我想删除src属性,所以我使用以下函数。
<script>
jQuery(document).ready(function(){
$("input[type=image]").removeAttr("src");
});
</script>
它在Firefox中有效,但在IE中不起作用?任何人都知道如何让它在IE中工作?
答案 0 :(得分:0)
注意:使用.removeAttr()删除内联onclick事件处理程序 在Internet Explorer 6,7或8中没有达到预期的效果 避免潜在的问题,改为使用.prop():
jpa:
database: POSTGRESQL
database-platform: org.hibernate.spatial.dialect.postgis.PostgisDialect
show-sql: true
hibernate:
ddl-auto: update
答案 1 :(得分:0)
我相信你的图像类型需要括号
jQuery(document).ready(function(){
$("input[type='image']").removeAttr("src");
});