你能用一个提交按钮执行两个javascript函数吗?

时间:2016-02-08 10:33:14

标签: javascript html

我的表单中有两个不同的选项框,然后两个不同的脚本在点击上提取这些数据是我如何执行这两个脚本还是不起作用?

<input class="form-control" type="button" onclick="fun() && fun2()" value="Submit">

2 个答案:

答案 0 :(得分:3)

是的,成功

<input class="form-control" type="button" onclick="fun(); fun2();" value="Submit">

或者您可以调用一个将调用它们的函数

<input class="form-control" type="button" onclick="fun();" value="Submit">

function fun()
{
  fun1();
  fun2();
}

答案 1 :(得分:0)

是的,这很简单:

table {
    font-size: inherit;
}

然后你可以简单地在onklick属性上调用myFunction