gpt4 book ai didi

javascript - 如何将 2 个或更多参数从 HTML 输入传递给 Javascript 函数

转载 作者:行者123 更新时间:2023-11-28 00:17:28 24 4
gpt4 key购买 nike

我有这些输入:

<input type='radio' id='1' name='s' onclick='pieces(this.value);'  value='6'>6
<input type='radio' id='2' name='s' onclick='pieces(this.value);' value='12'>12
<input type='radio' id='3' name='s' onclick='pieces(this.value);' value='24'>24
<input type='radio' id='11' name='v' onclick='pieces(this.value);' value='yes'>Yes
<input type='radio' id='12' name='v' onclick='pieces(this.value);' value='no'>No

当单击单选按钮。

最佳答案

您可以通过以下不同方式传递参数:

function antguider(name, url){
alert("Name = "+name+" URL = "+url);
}

HTML 部分

<input type="button" onclick=antguider('AntGuider','http://antguider.blogspot.com') value="Click Without Quotation" />
<input type="button" onclick="antguider('AntGuider','http://antguider.blogspot.com')" value="Click With Quotation" />
<input type="button" onclick="antguider(12345,'http://antguider.blogspot.com')" value="No Quotation Needed For Button" />

关于javascript - 如何将 2 个或更多参数从 HTML 输入传递给 Javascript 函数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11271769/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com