检查多个可能字段的函数
我正在制作问答应用程序。
http://jsfiddle.net/kaninepete/4YTA6/
我如何扩展它以允许多个相同类型的问题?
我不知道让函数知道要检查的女巫字段。
提前致谢。
编辑 我想单独检查每个答案。 这是否需要为每个问题提供一个新表格?
I'm making a question and answer application.
http://jsfiddle.net/kaninepete/4YTA6/
How can I expand this to allow more than one questions of the same type?
I don't know to let the function know witch field to check.
Thanks in advance.
Edit
I want to check each answer indiviually.
Would this require a new form for each question?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这在技术上是可行的,但可能需要大量的清理工作——欢迎建设性的批评。 (使 HTML 文件真正有效,不要直接链接到 jQuery,清理我的 jQuery 等。我还不是 jQuery 专家。)我采用了 JavaScript 查看所有适当的 HTML 并显示响应的路线(而不是基于 JavaScript 数组构建 HTML。)
您基本上可以复制粘贴
内容并更改
q-< 后面的数字/code> 和
a-
对于每个问题,它都会起作用。理想情况下,我们将使用服务器端编程来验证答案(因为客户端可以轻松查看答案。)
This technically works but could probably use quite a bit of cleanup -- constructive criticism welcomed. (Make the HTML file actually valid, don't link directly to jQuery, clean up my jQuery, etc etc. I'm not a jQuery expert yet.) I went the route where the JavaScript looks at all the appropriate HTML and displays responses (instead of building HTML based off of JavaScript arrays.)
You can basically copy-paste the
<li>...</li>
stuff and change the number followingq-
anda-
for each question and it will work.Ideally, we'd be using server-side programming to verify answers (since the client can easily view the answers.)
是的,您希望用户回答的每个问题都需要一个新的
元素。
Yes, you would need a new
<input>
element for each question you want the user to answer.