大橙子网站建设,新征程启航
为企业提供网站建设、域名注册、服务器等服务
可以通过客户端js脚本实现。在表单中设置一个隐藏域,然后再提交的时候,用js获取文本框内容并将内容设置为隐藏域值。就可以实现了
创新互联-专业网站定制、快速模板网站建设、高性价比丰镇网站开发、企业建站全套包干低至880元,成熟完善的模板库,直接使用。一站式丰镇网站制作公司更省心,省钱,快速模板网站建设找我们,业务覆盖丰镇地区。费用合理售后完善,十余年实体公司更值得信赖。
把文本框放在表单form里面提交就可以了。直接获得文本框的值,要插入多条记录,就用循环执行你的那条数据sql语句咯
第一种 表单提交
第二种 ajax 要用你input框的id和select框的id
script
//地址添加提交
$(function () {
$('#address_submit').click(function () {
layer.load(1,{time:1000});
var select_country=$('#select_country option:selected').text();//select框
var select_province=$('#select_province option:selected').text();
var select_city=$('#select_city option:selected').text();
var consignee=$('#consignee').val();
var phone=$('#phone').val();
var address_detail=$('#address_detail').val();
if(!select_country || !select_province || !consignee || !phone || !address_detail){
layer.msg('Please complete the receipt information', {icon: 2,offset: '100px',time:'1200'});
}
$.post("{:U('User/addAddress')}",{
'select_country':select_country,
'select_province':select_province,
'select_city':select_city,
'consignee':consignee,
'phone':phone,
'address_detail':address_detail,
},function (data) {
if(data=='success'){
layer.msg('operation success', {icon: 1,offset: '100px',time:'1000'});
setTimeout("window.location.reload()",1000);
}
else{
if (data == 'no_session') {
layer.msg('Login information has failed please log in again ', {icon: 2, offset: '100px', time: '1000'});
setTimeout("location.href = '{:U("index/Login/login")}'", 1000);
return false;
}
layer.msg(JSON.stringify(data), {icon: 2,offset: '100px',time:'1500'});
return false;
}
},'json');
});
})
/script
jquery:点击update触发$(this).parents("tr").find("td input").attr("readOnly","false");
有$_GET 或者 $_POST
代码如下 :
form action='' method='post'
文本框:input type='text' name='text'
input type='submit' value='提交',name='sub'
/form
?php
if(!empty($_POST['sub'])){
echo $_POST['text'];
}
?
如果是GET 就换成GET
进入php源程序目录中的ext目录中,这里存放着各个扩展模块的源代码,选择你需要的模块,比如curl模块:cd curl执行phpize生成编译文件!
phpize在PHP安装目录的bin目录/usr/local/php5/bin/phpize运行时,
可能会报错:Cannot find autoconf. Please check your autoconf installation andthe $PHP_AUTOCONFenvironment variable is set correctly and then rerun thisscript.,需要安装autoconf:yum install autoconf(RedHat或者CentOS)、apt-get installautoconf(Ubuntu Linux)!
执行/usr/local/php5/bin/php -v这个命令时,php会去检查配置文件是否正确,
如果有配置错误,这里会报错,可以根据错误信息去排查!