这种app.js是什么技术?

时间:2018-03-08 09:38:47

标签: javascript truffle

这是一个元问题,因为我不知道我想要搜索的名称。

在关注truffle tutorial之后,我正在处理名为<form> <div class="form-group"> <label for="exampleInputFirst">First Name</label> <input type="text" class="form-control input-lg" id="exampleInputFirst"> </div> <div class="form-group"> <label for="exampleInputLast">Last Name</label> <input type="text" class="form-control input-lg" id="exampleInputLast"> </div> <div class="form-group"> <label for="exampleInputEmail">Email Address</label> <input type="email" class="form-control input-lg" id="exampleInputEmail"> </div> <button type="submit" class="btn btn-primary btn-lg btn-block">Submit</button> </form>的文件,如下所示:

app.js

我不知道如何设置和使用全局变量,或者通过回调来调用我自己的函数,最重要的是,我不知道要搜索的内容

这只是松露,还是整个javascript&#34;家庭&#34;的应用程序?我在其他项目中看到了类似的App = { web3Provider: null, contracts: {}, init: function() { $.getJSON(...){ ... )}; return App.initWeb3(); }, foo: function() { ... } }; $(function() { $(window).load(function() { App.init(); }); }); ,但它对如何搜索我需要的信息没有帮助。

0 个答案:

没有答案