如何动态改变HTML表格中的数据
我有一个存储在字符串中的html标签,我想加载带有我通过程序动态给出的属性的表...
如何搜索html的行和列的特定标签并将数据添加到属性...
任何帮助表示感谢...
提前致谢......
i hav a html tags stored in string and i want to load the table with the attributes which i given dynamically through program...
how to search the particular tags of the row and column of html and add the data to the attributes...
any help appreciated...
Thanks in advance......
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
为 HTML 标记指定 ID 或类名称,然后使用 javascript 或 DOM 更新它。
例如:
HTML 代码:
Javascript 代码:
document.getElementByid("tab1").value = Box1 中的文本
document.getElementByid("tab2").value = Box2 中的文本
specify ID's or class names for HTML tags, and then update it using javascript or DOM.
ex:
HTML code:
Javascript Code:
document.getElementByid("tab1").value = Text in Box1
document.getElementByid("tab2").value = Text in Box2
嗯,我显然无法发表评论,所以这里有对 Noddy Cha 答案的更详细解释。
获取值:
设置值:
希望这会有所帮助。
Hmm I apparently can't comment so here's a more detailed explanation of Noddy Cha's answer.
To get values:
To set values:
Hope this helps.
我首先将 html 标签复制到字符串中,然后在需要时更新日期...
最后我将动态 html 显示到 Web 视图上以验证它...
i hav first copied the html tags into string and then updating the date whenever i want ...
and then finally iam displaying ths dynamic html on to the web view to verify it....