我想使用appending end regions:
[[4.0, 10.0], [12.0, 15.0], [20.0, 21.0], [28.0, 32.0], [36.0, 41.0], [44.0, 50.0]]
appending beginning regions:
[[4.0, 10.0], [12.0, 15.0], [20.0, 21.0], [28.0, 32.0], [36.0, 41.0], [44.0, 50.0], [0.0, 3.0]]
标记
<a>
请注意,输入字段值将被编辑并与<input type="text" class="form-control" name="plate" value="'. $value["plate"] . '" />
<a href="vehicle_edit.php?edit=' . $value["plate"] . '&edited=' . $value["plate"] . '">
<button class="btn btn-primary btn-sm" style="float:right;margin-top:5px;">Update</button>
</a>
的第一个版本一起传递到另一个页面。谢谢你的帮助!
答案 0 :(得分:-1)
您必须使用<form>
标记,隐藏字段包含原始值,或者使用jQuery或类似内容获取已编辑字段的值并将其附加到href
假设jQuery的例子:
<input id="plate" type="text" name="plate" value="<?php echo $value["plate"];?>" />
<a id="updateBtn" href="#">Update</a>
<script>
$(function() {
$('#updateBtn').on('click',function(){
var edited = $('#plate').val();
$(this).prop('href', 'vehicle_edit.php?edit=<?php echo $value["plate"];?>&edited=' + edited);
return true;
});
});
</script>