Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用煎茶触摸。我可以在操作表项上调用参数化处理函数吗?如果是,那么如何做到这一点。请帮助我..我想这样做,,
var z = function test(){alert('Hellow')};
在处理函数中:
handler:function(z){ alert(z); }
它不起作用..只是显示..“Index.html(Object:Object)”提前谢谢
是的,您可以这样做,但这取决于处理程序的调用者提供的参数。如果是按钮,这将是“点击”事件。arguments但是在读取数组时,您始终可以查看所有传递的参数,例如
arguments
handler:function(){ console.log(arguments); }
如果你知道有一个参数,你知道你(让我们按下按钮)可以定义它
handler:function(btn){ btn.disable(); }
您还需要知道它alert不能打印JavaScript 对象!用于console.log此。
alert
console.log