Javascript 在事件处理程序中定义一个函数
Javascript define a function within event handler
如何在按钮的 onclick
事件中编写函数
我想做的是类似这样的事情:
<button onclick="(function(){
console.log('some code here')
})">My button</button>
您需要调用函数:
<button onclick="(function(){
console.log('click')
})()">My button</button>
<button>
onclick="(function(){console.log('click')})()"
>Button
</button>
如何在按钮的 onclick
事件中编写函数
我想做的是类似这样的事情:
<button onclick="(function(){
console.log('some code here')
})">My button</button>
您需要调用函数:
<button onclick="(function(){
console.log('click')
})()">My button</button>
<button>
onclick="(function(){console.log('click')})()"
>Button
</button>