使用以下代码我可以选择所有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
答案 0 :(得分:0)
attr_val = $("div").attr("onclick");
attr_val.split("=")[1];