如何在 javascript 中将参数从一个函数传递到另一个函数 onclick
我想将 onclick 参数从一个函数传递到另一个函数
假设,
HTML
<button class='btn1' onclick='passvalue(2)'>
<button class='btn2' onclick='getvalue()'>
当我点击 btn1
时,2 个值将从 passvalue()
传递到 getvalue()
。然后,每当我仅单击 btn2
时,getvalue()
就会在控制台上打印 2。
但我无法做到这一点。我希望我的问题足够清晰易懂。请有人帮助我做到这一点。
I want to pass an argument onclick from one function to the another function
Suppose,
Html
<button class='btn1' onclick='passvalue(2)'>
<button class='btn2' onclick='getvalue()'>
when I will click on btn1
, 2 value will pass from passvalue()
to getvalue()
. And then, Whenever i will click on btn2
only, getvalue()
will print 2 on console.
But I couldn't able to do it.I hope my problem is enough clear to understand. Please someone help me to do that.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我认为这不是最好的解决方案,但它应该适合您。
这是针对 HTML 的
这是针对 JS 的
这是 JsFidle
I think this is not the best solution, but it should work for you.
This for HTML
And this for JS
And here is it in JsFidle