【发布时间】:2019-12-06 13:47:14
【问题描述】:
我正在尝试编写一个用户脚本
- 在每个超链接后添加一个复选框
- 然后,单击复选框后,相应的超链接将其状态更改为“已访问”。 (颜色将从蓝色变为紫色。)
问题是我不明白如何将href 值从a 元素“移动”到desired_element 变量。
为了使示例相对简单,我使用了维基百科。然而,在现实生活中,它适用于不同的 HTML 结构,因此使用 jQuery 可能是一个好主意。 (可能是.closest,然后是.find?)
维基百科案例:
<p>In <a href="/wiki/Computer_programming">computer
programming<input type="checkbox"></a>, a naming convention
is...</p>
<!-- https://en.wikipedia.org/wiki/Naming_convention_(programming) -->
真实案例:
<div>
<figure>
<div>
<div>
<img src="image.png">
</div>
<a href="https://example.com/>Click Me</a>
</div>
</div>
<input type="checkbox">
</div>
// ==UserScript==
// @grant none
// @match https://*.wikipedia.org/*
// @name Wikipedia
// @require https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js
// ==/UserScript==
(function() {
'use strict';
function actionFunction() {
var links = document.querySelectorAll('a');
var i;
for (i = 0; i < links.length; i++) {
var input = document.createElement('input');
input.setAttribute('type', 'checkbox');
//input.addEventListener("change", aaa);
input.onchange = function() {aaa()};
links[i].appendChild(input);
}
}
function aaa() {
var current_url;
// var desired_url = something?.parentNode.href;
// store the current URL
current_url = window.location.href;
// use replaceState to push a new entry into the browser's history
history.replaceState({}, '', desired_url);
// use replaceState again to reset the URL
history.replaceState({}, '', current_url);
}
actionFunction();
})();
【问题讨论】:
-
@RoryMcCrossan 使用绝对 URL 测试,有效 (
var desired_url = 'https://...)。这个想法来自这里:stackoverflow.com/questions/795654/…. -
我的立场是正确的:)
标签: javascript jquery tampermonkey userscripts