gpt4 book ai didi

html - 如何在 HTML 文本字段(表单中)中将包含空格的字符串设置为默认值?

转载 作者:太空宇宙 更新时间:2023-11-04 11:32:31 26 4
gpt4 key购买 nike

我正在使用 CGI 和 C++ 语言。

假设我有 string str="Hello people of earth";(这只是一个例子,字符串是动态的)

我需要将 str 设置为 html 表单中的默认值,但我得到的只是第一个单词。

cout<<"<input type=text name=word value=" << str <<">";

最佳答案

发生这种情况是因为您没有在字符串 (' ') 中给出值。所以当它到达“太空”时它就停止了。

代替这个

cout<<"<input type=text name=word value=" << str <<">";

这样试试

cout<<"<input type='text' name='word' value='" << str <<"'>";

关于html - 如何在 HTML 文本字段(表单中)中将包含空格的字符串设置为默认值?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24182414/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com