使用自定义数据属性传递函数

时间:2013-01-03 15:25:06

标签: javascript html5

是否可以传递具有自定义数据属性的函数?

这不起作用:

<div data-myattr="hello();">
</div>
function hello(){
    console.log('hello');
}

当我得到属性时,它是一个值为“hello();”的字符串。而不是功能。怎么解决这个问题?

4 个答案:

答案 0 :(得分:13)

你可以这样做:

<div data-myattr="hello"></div>
function hello(){
    console.log('hello');
}

function executeFunctionFromData(){
    var d = 'hello' // Save `data-myattr` to d; (Obviously, this is just a hardcoded value as an example)
    window[d](); // Execute the function.
}

这是有效的,因为函数hello是在全局范围内定义的,因此是window对象的属性。

答案 1 :(得分:6)

<div id='some' data-my-function="function(x){console.log(x);}"></div>

JS:

var myfunction = $('#some').data('my-function');

if(myfunction != undefined){     
    eval("myfunction = "+myfunction, myfunction);    
}

if(typeof myfunction ==="function") {
    myfunction('Cristo Rabani!');
}

答案 2 :(得分:1)

使用Webpack。

<div data-func="funcName"></div>
window.funcName = function() {};

答案 3 :(得分:0)

使用eval:

eval("alert('hello');");

将显示你好;