我们被要求对一些代码采取创可贴措施,所以这看起来真的很愚蠢,但请耐心等待。
我们需要阻止锚点的 onclick 方法并检索正在执行的函数调用的参数,以便使用这些参数调用不同的函数。这是我们到目前为止的代码和html:
<p><a href="#" onclick="openMoreProductVideos('Title of video','VideoCode','false');return false;"><span class="txt">View all videos</span></a></p>
JS:
// undefine onclick so it is not handled with broken function
$('a[onClick^=openMoreProductVideos]').each(function () {
this.onclick = undefined;
});
// grab parameters from onclick function call and submit to new function.
$('a[onClick^=openMoreProductVideos]').click(function () {
strStart = "openMoreProductVideos(";
strFinish = ");return false"
srctext = $(this).parent().html();
var re = strStart + ".*?"+strFinish
var newtext = srctext.match(re)[1];
var callparams = newtext.substring(1,newtext.length-1);
testparams(callparams);
});
// test function to see if parameters are working
function testparams (a,b,c){
console.log (a,b,c)
}
问题是返回的字符串(callparams)被视为一个参数。我不是正则表达式专家,所以我希望比我更有经验的人能快速看到解决方案。
非常感谢。