それはかなり単純なはずですが、私はこの問題に夢中になっています。基本的に私がやろうとしているのは、ページに表示する前に、返された HTML データからいくつかのタグを置き換えることです。例えば:
$.ajax({
url: url,
cache: false,
type: 'GET',
success: function(data) {
// Here i need to replace href in ALL <a> tags and add the onclick attrib with the contents from the href
$('#floaty-dialog').html(modifieddata);
}
});
HTML データを前処理し、すべての href 属性を # に置き換えて、同じリンクに onclick 属性を追加するにはどうすればよいですか??