如何动态改变HTML表格中的数据

发布于 2024-09-28 14:38:25 字数 126 浏览 9 评论 0原文

我有一个存储在字符串中的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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

歌入人心 2024-10-05 14:38:25

为 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

臻嫒无言 2024-10-05 14:38:25

嗯,我显然无法发表评论,所以这里有对 Noddy Cha 答案的更详细解释。

获取值:

NSString * textBox1Value = [myWebView stringByEvaluatingJavaScriptFromString:@"document.getElementByid(\"tab1\").value"];

NSString * textBox2Value = [myWebView stringByEvaluatingJavaScriptFromString:@"document.getElementByid(\"tab2\").value"];

设置值:

NSString * ignoredString1 = [myWebView stringByEvaluatingJavaScriptFromString:[NSString stringWithFormat:@"document.getElementByid(\"tab1\").value = \"%@\"", textBox1Value]];

NSString * ignoredString2 = [myWebView stringByEvaluatingJavaScriptFromString:[NSString stringWithFormat:@"document.getElementByid(\"tab2\").value = \"%@\"", textBox2Value]];

希望这会有所帮助。

Hmm I apparently can't comment so here's a more detailed explanation of Noddy Cha's answer.

To get values:

NSString * textBox1Value = [myWebView stringByEvaluatingJavaScriptFromString:@"document.getElementByid(\"tab1\").value"];

NSString * textBox2Value = [myWebView stringByEvaluatingJavaScriptFromString:@"document.getElementByid(\"tab2\").value"];

To set values:

NSString * ignoredString1 = [myWebView stringByEvaluatingJavaScriptFromString:[NSString stringWithFormat:@"document.getElementByid(\"tab1\").value = \"%@\"", textBox1Value]];

NSString * ignoredString2 = [myWebView stringByEvaluatingJavaScriptFromString:[NSString stringWithFormat:@"document.getElementByid(\"tab2\").value = \"%@\"", textBox2Value]];

Hope this helps.

飞烟轻若梦 2024-10-05 14:38:25

我首先将 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....

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文