gpt4 book ai didi

javascript - Jquery 删除属性在 IE 中不起作用

转载 作者:行者123 更新时间:2023-11-28 06:55:10 24 4
gpt4 key购买 nike

我有以下输入字段:

<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 中运行吗?

最佳答案

Note: Removing an inline onclick event handler using .removeAttr() doesn't achieve the desired effect in Internet Explorer 6, 7, or 8. To avoid potential problems, use .prop() instead:

$element.prop(
> "onclick", null ); console.log( "onclick property: ", $element[ 0
> ].onclick );

来源:https://api.jquery.com/removeAttr/

关于javascript - Jquery 删除属性在 IE 中不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33549668/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com