ใช้ bookmarklet ตัวอย่างเช่นคุณสามารถใช้เครื่องมือได้ที่http://userjs.up.seesaa.net/js/bookmarklet.htmlเพื่อสร้าง bookmarklet ด้วยรหัสต่อไปนี้:
(function(){
var post_to_url = function(path, params, method) {
var openWindow = window.open(path);
method = method || "post";
var form = openWindow.document.createElement("form");
form.setAttribute("method", method);
form.setAttribute("action", path);
for(var key in params) {
var hiddenField = document.createElement("input");
hiddenField.setAttribute("type", "hidden");
hiddenField.setAttribute("name", key);
hiddenField.setAttribute("value", params[key]);
form.appendChild(hiddenField);
}
openWindow.document.body.appendChild(form);
form.submit();
};
post_to_url(
'http://www.chronopost.fr/transport-express/livraison-colis/engineName/search/accueil/suivi',
{search:'test'});
})()
จากนั้นใช้ลิงก์ bookmarklet ที่สร้างขึ้นเป็นบุ๊คมาร์คในเบราว์เซอร์ที่คุณชื่นชอบ เมื่อคุณคลิกมันจะเปิดหน้าต่างสร้างฟอร์มด้วยพารามิเตอร์{search:'test'}
และส่งแบบฟอร์มนั้น
เมื่อต้องการเปลี่ยน URL post_to_url
และพารามิเตอร์เพียงแค่ปรับแต่งที่สุดท้ายที่จะโทร
กลยุทธ์นี้อาจยอดเยี่ยมหากคุณเพียงแค่สร้างที่คั่นหน้าเว็บหนึ่งครั้งและใช้งานหลายครั้ง อย่างไรก็ตามมันไม่ได้ทำให้ง่ายในการสร้างที่คั่นหนังสือใหม่หากคุณจำเป็นต้องทำอย่างสม่ำเสมอ