私の目標はonclick
、リンクの属性を変更することです。私はそれをうまく行うことができますが、結果のリンクはie8では機能しません。ff3で動作します。
たとえば、これはFirefox 3では機能しますが、IE8では機能しません。なんで?
<p><a id="bar" href="#" onclick="temp()">click me</a></p>
<script>
doIt = function() {
alert('hello world!');
}
foo = document.getElementById("bar");
foo.setAttribute("onclick","javascript:doIt();");
</script>