本文介绍了文本框仅显示一个单词作为值的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

有人可以帮助我理解为什么文本框不会显示只包含第一个单词的完整字符串吗?例如,如果名称的值为 John Smith,则文本框中将显示 John

Can anyone help me understand why a text box won't display a whole string opposed to just the first word? For example if the value of Name is "John Smith", the text box will display "John"

echo< td> 。 <输入类型=文本名称=名称值=。 $ record [’Name’]。 < / td> ;

推荐答案

那是因为您没有引用属性值,没有引号的情况下会终止属性值

Thats because you did not quote your attribute value, without quotes spaces terminate the attribute value

echo "<td><input type = text name = name value =\"" . $record['Name'] . "\" ></td>" ;

这篇关于文本框仅显示一个单词作为值的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-23 07:52