问题:我们正在一个非常受限的 CMS 上建立一个网站。我们需要替换anchor的href中的某个函数。不幸的是,加载的内容是外部的,这段代码不起作用:
jQuery:
$(document).ready(function() {
$('a[href*="show_upsell_dialog"]').each(function(e){
$(this).attr('href', $(this).attr('href').replace('show_upsell_dialog(', 'more_details_1('));
});
});
HTML位:
<a href="javascript:show_upsell_dialog(1238)">Details</a>
问:为什么?我如何使它工作?