言うことができますか、私が持っているリンクは次のようになります
<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>
可能であれば、それを機能させるにはどうすればよいでしょうか。また、そのタイプの呼び出しの実際の参照は何ですか。それを行うために呼び出されるメソッドは何ですか。将来忘れたら、メソッドが何であるかを覚えていることを願っています。と呼ばれ、私はそれを調べることができます。