重庆分公司,新征程启航
为企业提供网站建设、域名注册、服务器等服务
可以通过客户端js脚本实现。在表单中设置一个隐藏域,然后再提交的时候,用js获取文本框内容并将内容设置为隐藏域值。就可以实现了
创新互联专注于网站建设,为客户提供成都网站制作、网站建设、外贸网站建设、网页设计开发服务,多年建网站服务经验,各类网站都可以开发,高端网站设计,公司官网,公司展示网站,网站设计,建网站费用,建网站多少钱,价格优惠,收费合理。
看来你是没有php基础。首先你的想法就是不对。 是这样的,你在页面input标签中输入市值,然后后submit提交表单(form)到指定页面。在指定页php接受参数也就是你输入的(20035),然后用php链接数据库进行查询。
把文本框放在表单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");