本文介绍了两个onClick动作一个按钮的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
< input type =buttonvalue =Dont再次显示这个!onClick =fbLikeDump();的onclick = WriteCookie(); />
PS:我在.js文件中使用它。
onClick )将被忽略。因此,而不是
onclick
调用 fbLikeDump();
和 WriteCookie(); ,它只会调用 fbLikeDump();
。要解决这个问题,只需定义一个 onclick
属性并调用其中的两个函数:
< input type =buttonvalue =不要再显示这个!onclick =fbLikeDump(); WriteCookie(); />
Does someone know a wizards trick to make it work ?
<input type="button" value="Dont show this again! " onClick="fbLikeDump();" onclick="WriteCookie();" />
PS: I am using it in a .js file.
解决方案 Additional attributes (in this case, the second onClick
) will be ignored. So, instead of onclick
calling both fbLikeDump();
and WriteCookie();
, it will only call fbLikeDump();
. To fix, simply define a single onclick
attribute and call both functions within it:
<input type="button" value="Don't show this again! " onclick="fbLikeDump();WriteCookie();" />
这篇关于两个onClick动作一个按钮的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!