如何使用javascript从输入数据值中获取onclick值

时间:2019-02-15 19:50:29

标签: javascript html

如何从输入数据值中获取onclick值并执行该功能

我的html代码

<input type="hidden" id="navi" value="shownext(1,2);">
<input type="button" id="next" onclick="next();">

我的Java脚本

function next(){
    var nq=document.getElementById('navi').value;
    {
    document.getElementById('next').onclick = function() { 'nq' };
}
}

function shownext(td,id){
//code
}

当我单击下一步按钮时,它没有单击导航功能

1 个答案:

答案 0 :(得分:0)

您需要使用next参数调用nq

document.getElementById("next").onclick = function() { next(nq); };