$(".awp_class_horizantal").attr('onclick', 'changeTextAdd(this.id)');
上面的代码在 IE7 中不工作,但在其余浏览器中工作。
有人可以建议我如何添加在 IE7 中有效的 onclick 属性吗???
$(".awp_class_horizantal").click(function() {
changeTextAdd(this.id);
});
上面的代码正在运行,但它给我提供了无响应的脚本错误。
我必须在该函数本身中调用 changeTextAdd 函数。
谢谢