0

我有一系列单选按钮和一个提交按钮:

<input type="radio" name="selectme_resubmit" id="selectme_resubmit1" value="first" /> <label for="selectme_resubmit1">Resubmit with the original submitter</label><br>
<input type="radio" name="selectme_resubmit" id="selectme_resubmit2" value="without" checked /> <label for="selectme_resubmit2">Resubmit without any submitter</label><br>
<input type="radio" name="selectme_resubmit" id="selectme_resubmit3" value="custom" /> <label for="selectme_resubmit3">Resubmit with a custom submitter:</label> <input type="text" name="selectme_custom_submitter" id="selectme_custom_submitter" /><br>
<input type="button" id="selectme_resubmit_button" name="selectme_resubmit2_button" value="Place a submit template" onclick="selectme_act(\'resubmit\')" />

我还有以下 javascript(使用 jquery):

var typeofsubmit = $("input[name=selectme_resubmit]:checked").val();
console.log(typeofsubmit);

但是,我在控制台中得到“未定义”,即使我选择了某些东西......我做错了什么?

4

2 回答 2

0

我测试了你的代码,选择器确实有效。我发现的唯一问题是,当事件'中不需要角色时,您正在逃避角色onclick

于 2013-07-27T18:21:41.290 回答
0

你错过了准备功能

$().ready(function(){
 var typeofsubmit = $("input[name=selectme_resubmit]:checked").val();
  console.log(typeofsubmit);
 });

请在您的声明之前使用准备好的功能

并检查此链接http://jsfiddle.net/FQGuu/

于 2013-07-27T18:23:40.937 回答