当前位置:Gxlcms > PHP教程 > input取值

input取值

时间:2021-07-01 10:21:17 帮助过:28人阅读

这个效果
{if $list or $list|@count neq 0 } {foreach from=$list item=item key=index} {if $item.parent_tow_id eq 2} {/if} {if $item.parent_tow_id eq 1} {/if} {if $item.parent_tow_id eq 0} {/if} {/foreach} {else} {/if}
序号 国家 省份 地区 操作
{$index}{$item.country} {$item.province} {$item.name}{$item.country} {$item.name} {$item.name}
--暂无数据--
{include file=warning.tpl}

点击确定能获取文本框输入的值 有没有可能实现


回复讨论(解决方案)


res 中就是 


res 中就是  

是什么啊 我是新手 真的不懂那么多 还有 你写的那段代码是不是少个 ) 啊?


res 中就是  


请问您是不是这个意思啊

function foo() {
var res = []; //定义一个数组,用于存放各文本框的值
var texts = document.getElementsByName("p"); //获取全部名字为 p 的文本框
for(var i in texts) res.push(texts[i].value ); //读取每个文本框的值到数组
}

做大事者不拘小节

res就是定义了一个数组。

function foo() {
var res = []; //定义一个数组,用于存放各文本框的值
var texts = document.getElementsByName("p"); //获取全部名字为 p 的文本框
for(var i in texts) res.push(texts[i].value ); //读取每个文本框的值到数组
}

做大事者不拘小节


我这样是不是可以带着获取到的p的值 去city页面啊 怎么保存呢

res 是结果数组,传送时需转换成字符串(因为php不认得js数组):res = res.join(',')
然后放到目标 url 中

res 是结果数组,传送时需转换成字符串(因为php不认得js数组):res = res.join(',')
然后放到目标 url 中


我不是很懂这个意思 换一种方法用post提交

这样获取res的数组么? 怎么感觉怪怪的

人气教程排行