是否有可能让我们说,我有它的链接看起来像
<a href="something/" class="something" data-callback="thisFunction">
<a href="something/" class="something" data-callback="thatFunction">
<a href="something/" class="something" data-callback="anotherFunction">
<a href="something/" class="something" data-callback="">
<script>
$('.something').click(function(e)
{
e.preventDefault();
var cb = $(this).data('callback');
if(cb !== undefined && cb !== null && cb !== '')
{
//somehow use cb as a means to call another function
//similar in effect to calling "thatFunction();"
}
});
function thisFunction()
{
//code
}
function thatFunction()
{
//code
}
function anotherFunction()
{
//code
}
</script>
如果可能的话,我将如何实现使其工作,以及该类型调用的实际参考是什么,例如如果我忘记了,将来需要这样做的方法是什么,希望我能记住该方法是什么打电话给我,我可以查一下。