如何从输入数据值中获取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
}
当我单击下一步按钮时,它没有单击导航功能
答案 0 :(得分:0)
您需要使用next
参数调用nq
:
document.getElementById("next").onclick = function() { next(nq); };