如何用jquery选择和更改onclick属性?

时间:2010-07-22 15:17:24

标签: jquery

使用以下代码我可以选择所有href的值然后更改它们;

$("a").each(function(){
 if (this.hostname == location.hostname){
     var url = this.href;
     var qs = $.jqURL.get('qs');
     if(url.indexOf('qs=') == -1 && (qs!= undefined && qs!= '')){
        if (url.indexOf('?')>0){
            $(this).attr('href', url + '&qs='+ qs);

        }
        else
        {
            $(this).attr('href', url + '?qs='+ qs);

        }
    }
 }
})

我也想像上面的代码一样应用onclick属性。

<div onclick="window.location.href='http://www.domain.com'" style="cursor:pointer">Test</div>

非常感谢你们,现在已经......

的问候,
Kerbooo

1 个答案:

答案 0 :(得分:0)

attr_val = $("div").attr("onclick");

attr_val.split("=")[1];