我正在处理的网站有一个“申请此工作”#39;按钮按钮上的a href如下example.com/?Question12=insert%20job%20you%20are%20interested%20in
我们想要的是example.com/?Question12=insert%20job%20you%20are%20interested%20in
从页面上的h1自动拉入。
例如,如果作业页面是针对Web Developer的,那么h1将为<h1> Web Developer </h1>
,链接将自动为/?Question12=web%developer
我确信这很容易通过javascript / jquery或php完成任何帮助都会非常感激。
提前致谢
答案 0 :(得分:0)
可以这样实现:
HTML
<h1>Web Developer</h1>
<a href="example.com/?Question12=">job link</a>
JQUERY
var link = $("a").attr("href");
link = link+$("h1").html();
link = link.replace(/\s/g,"%20");
$('a').attr("href", link);