我正在尝试为 id 和 onclick 添加一个 attr,它可以在 firefox 和 chrome 上运行,但由于某种原因它不能在 IE 9 上运行。我的代码有任何替代方法或有问题吗?
$(".extendedGridView tr td a").each(function (index)
{
if ($(this).html() == "Update")
{
$(this).attr('id', 'insertButton');
$(this).attr('onclick', "return Validate('extendedGridView')");
}
});