設定ページの localStorage- に URL を保存したい。次に、クリックするとその URL に移動するハイパーリンクまたはボタンが必要です。jqueryを使わないようにしています。
<!doctype html>
<html>
<head>
<title>Local Storage URL</title>
<script type="text/javascript">
function save() {
var myURL = document.getElementById('url');
localStorage.setItem('url', myURL.value);
}
function load() {
var storedValue = localStorage.getItem('url');
if(storedValue) {
document.getElementById('url').value = storedValue;
}
}
</script>
</head>
<body onLoad="load()">
<input type="text" id="url" />
<input type="button" value="save" onclick="save()" />
<p>
<-- Here is where I am stuck below --><br>
<a href="('myUrl')">Link to localStorage Address</a>
</body>
</html>