Home > Backend Development > PHP Tutorial > php动态生成的表格,读取特定列的值,列里面是文本框或者上拉框,要求读取文本框的值和上拉框当前显示的值,请教如何做啊

php动态生成的表格,读取特定列的值,列里面是文本框或者上拉框,要求读取文本框的值和上拉框当前显示的值,请教如何做啊

WBOY
Release: 2016-06-13 12:54:43
Original
900 people have browsed it

php动态生成的表格,读取特定列的值,列里面是文本框或者下拉框,要求读取文本框的值和下拉框当前显示的值,请问怎么做啊?
[img=http://]

<br />
//部分代码――――php生成表格时的代码,运行后页面见附图<br />
else if(intval($myEnum) == 0 && ($myWriteReadFlag == 2) && ($index == 2))<br />
{<br />
    $myDec =hexdec($myValue);       //将十六进制的值转换成十进制<br />
     $out .= "\t\t".'<td bgcolor="'.$localBgColor.'" '.(($this->align[$index])? 'align="'.$this->align[$index].'"' : '' ).'style="white-space: nowrap" class="'.$this->tabId.'">'.<br />
//**********************这里是插入的文本框**********************************<br />
'<input name="text[]" style="margin:-2px;border:None;heighth:12px;width:100%;<br />
background-color:'.$localBgColor.'" value="'.$myDec.'">'.'</td>'."\n";<br />
                    <br />
}<br />
Copy after login


[img=http://][/img]
php input


------解决方案--------------------
好呀,顶起来下。
------解决方案--------------------
没有看到相关代码
------解决方案--------------------
<br />
if(intval($myEnum) > 0 && ($myWriteReadFlag == 2) && ($index == 2))<br />
Copy after login

第23行 应该加一个条件吧 &&($myValue == {另下拉框为打开的值})
------解决方案--------------------
虽然没看懂你说什么,但是你用JS或是POST取值都可以获取到select的val,也就是当前取值,又不是取option,怎么会取到很多呢

Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template