我有一个带表单的自定义页面模板。此表单使用短代码显示在许多页面中。当用户单击提交按钮时,用户将重定向到"谢谢"页。感谢页面是a href
的静态(使用WP页面编辑器创建)。现在,当用户点击a href
时(在感谢页面中找到,他/她将重定向到用户提交表单但在用户来自的页面的特定部分中的页面网址。但是我不知道该怎么做。有人可以帮我这个吗?
<form method="POST">
<span class="icon-pp-green-ribbon"></span>
<fieldset>
<div class="form-group">
<label for="customer_fname"><span class="icons-asterisk"></span> Your name:</label>
<input type="text" name="name_first" placeholder="" required/>
</div>
<div class="form-group">
<label for="customer_tsname"><span class="icons-asterisk"></span> Your surname:</label>
<input type="text" name="name_last" placeholder="" required/>
</div>
<div class="form-group">
<label for="email">Your e-mail:</label>
<input type="email" name="email" placeholder="@"/>
</div>
<div class="form-group">
<label for="phone"><span class="icons-asterisk"></span> Phone number:</label>
<input type="text" name="phone" pattern ="^09\d{9}$" onkeypress="return isNumberKey(event)" size="11" placeholder="09" required/>
</div>
<div style="margin-top: 1.50em;">
<input type="checkbox" id="utm_checked" checked style=" float: left; transform: scale(1.2);"/>
<label for="utm_checked">I want to be occasionally notified</label>
</div>
<div class="form-group">
<input type="submit" name="submit" value="Send"/>
</div>
</div>
</form>
答案 0 :(得分:3)
尝试按此按钮可能会被告知here:
byte[] image_byte_data = Base64.decode(imageDataString, Base64.DEFAULT);
SaveInColumnWith_BLOB_Datatype(image_byte_data);
byte[] image_data = cursor.getBlob(cursor.getColumnIndex(DBData.ColumnName));
Bitmap = bmpImage = BitmapFactory.decodeByteArray(image_data, 0, image.length);
someImageView.setImageBitmap(bmpImage);
如果您之前的网页网址没有<input action="action" type="button" value="Back" onclick="window.history.go(-1); return false;" />
之类的网页版块信息,您可以在离开该网页之前将自定义网址推送到历史记录堆栈,这样每当您返回时,您不仅会返回该页面还有你来自的具体部分。您可以将自定义URL推送到浏览器as described here
答案 1 :(得分:0)
尝试使用此代码来利用浏览器维护的页面访问历史记录:
<button onclick="goBack()">Go Back</button>
<script>
function goBack() {
window.history.back();
}
</script>