我可以检索链接的字符串值并将其放在不同PHP页面的文本框中吗?我正在使用我的第一列作为链接。
像这样:
Input:
Array
(
[2] => 1
[7] => 1
[8] => 1
[9] => 2
)
Output
eg:
[2] => 1
[7] => 1
[8] => 1
[9] => 2
[2_7] => 2 (sum of sf_2 and sf_7)
答案 0 :(得分:0)
这是href链接" http://www.example.com"你要重定向的那个
<script>
var burl = "http://www.example.com";
</script>
<p><a href="" class="burl" data-extra="/textstring"> textstring</a></p>
检索链接的字符串值
<script>
(function() {
Array.prototype.forEach.call(document.querySelectorAll("a.burl"),
function(link) {
link.href = burl + link.getAttribute("data-extra");
});
})();
</script>