动态客户端脚本
我需要写一个java脚本。 这应该验证页面中是否选中了该复选框。 这里的问题是复选框位于网格内并且是动态生成的。 原因是在设计时不知道需要渲染的复选框的数量。 所以这个id只有在服务器端才知道。
I need to write a java script. This is supposed to validate if the checkbox is selected in the page or not. The problem here is that the check box is inside a grid and is generated dynamically. The reason being the number of check box that need to be rendered is not know at design time. So the id is know only at the server side.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
这里有一个想法:
正如 Anonymous 所指出的,您可以生成 javascript,如果您使用 ASP.NET,您可以使用 RegisterClientScriptBlock() 方法获得一些帮助。 MSDN 关于注入客户端脚本
您还可以编写或生成,一个 JavaScript 函数,它接受复选框作为参数,并将 onClick 属性添加到调用您的函数并将其自身作为参数传递的复选框定义中
Here is a thought:
As indicated by Anonymous you can generate javascript, if you are in ASP.NET you have some help with the RegisterClientScriptBlock() method. MSDN on Injecting Client Side Script
Also you could write, or generate, a javascript function that takes in a checkbox as a parameter and add an onClick attribute to your checkbox definition that calls your function and passes itself as the parameter
您还必须生成您的 javascript,或者至少生成一个 javascript 数据结构(数组),其中必须包含您应该控制的复选框。
或者,您可以创建一个包含元素,并在复选框类型的每个子输入元素上使用 js 循环。
You have to generate your javascript too, or at least a javascript data structure (array) wich must contain the checkboxes you should control.
Alternatively you can create a containing element, and cycle with js on every child input element of type checkbox.
如果它是您唯一的复选框,您可以执行 getElementsByTagName() 调用来获取所有输入,然后迭代返回的数组以查找适当的类型值(即复选框)。
If it's your only checkbox you can do a getElementsByTagName() call to get all inputs and then iterate through the returned array looking for the appropriate type value (i.e. checkbox).
问题里没有太多细节。 但假设 HTML 网格是在服务器端生成的(而不是在 javascript 中)。
然后将类添加到要确保选中的复选框。 并循环遍历 DOM,查找该类的所有复选框。 在 jQuery 中:
HTML:
Javascript:
There is not much detail in the question. But assuming the the HTML grid is generated on the server side (not in javascript).
Then add classes to the checkboxes you want to ensure are checked. And loop through the DOM looking for all checkboxes with that class. In jQuery:
HTML:
Javascript: