php 网上竞拍,怎样在网页上做一个按钮,提交要竞拍的价格, 然后网页就能实时更新,不需要刷新网页!
发布网友
发布时间:2022-08-20 19:34
我来回答
共4个回答
热心网友
时间:2023-11-09 10:18
使用 ajax,jquery很容易的,点击调用这个js
function a(){
var price=$('#price').val();
$.ajax({
type: 'get',
datatype: 'html',
url: '这是处理php文件的url,可以加个参数如&t=new,方便php页面接收&price='+price ,
success: function (data) {
$('#b').html(data);//b是显示区域的id
}
});
}
php 页面里面
if($_REQUEST['t']=='new'){
$price=$_REQUEST['price'];
此处更新数据库,更新成功后,echo $price;die();
}
热心网友
时间:2023-11-09 10:19
<sytle>
#jd{width:300px;height:200px;background:#e5e5e5;padding:10px;}
.xjg{height:40px;line-height:40px;}
.xjg span{color:#555;font-weight: 700;}
#cj{border:solid 1px #0AB42C;border-radius:4px;height:24px;width:180px;line-height:24px;margin-right:30px;}
.bd-b{height:24px;width:70px;line-height:24px;border:solid 1px #0AB42C;border-radius:4px;background:-webkit-gradient(linear, 0 0, 0 100%,from(#4AA9F3), to(#1D7BC5));background:-moz-linear-gradient(top, #4AA9F3,#1D7BC5 100%);background:-ms-linear-gradient(top, #4AA9F3,#1D7BC5 100%);color:#fff;cursor:pointer;}
</style>
<div id="jd">
<div class="xjg"><span>现在出价:</span>$<em id="newjg">25</em></div>
<div class="bd"><input type="text" name="cj" id="cj" value="50"/><input type="submit" value="Place bid" class="bd-b"/></div>
</div>
<script src="http://libs.baidu.com/jquery/1.9.0/jquery.min.js" type="text/javascript"></script>
<script>
$(function() {
$(".bd-b").on('click',function() {
var newjg=$("#cj").val();
$("#newjg").text(newjg);
//ajax可以把值传到数据库
$.ajax({
});
});
</script>
热心网友
时间:2023-11-09 10:19
用Ajax不行么?追问我是新手, 有大神能否给一个 代码 了?
热心网友
时间:2023-11-09 10:20
ajax就能做到追问本人新手,能否给个代码 让我参考参考!