私は値のリストを持つダイアログボックスを持っています。ユーザーは、複数の<li>
をクリックして選択できるはずです。彼らは、ボタンをクリックすると、次に、選択した各項目のテキストは、これはあなたのコードで何をすべき#landing
ダイアログから変数を保存して他のdivに渡します
<!-- this is the dialog box -->
<div class="fontBox">
<ul>
<li>A</li>
<li>B</li>
<li>C</li>
</ul>
</div>
<div id="Button">Insert Value</div>
<!-- Previous Page -->
<table>
<tr>
<td id="landing">This is where I want the value to go</td>
</tr>
</table>
$('.fontBox ul li').on('click', function() {
$(this).css('background', 'green');
var nValue = $(this).val($(this).text());
localStorage.setItem("nValue", nValue);
if (nValue != null) {
$('#landing').text(nValue);
}
});
"前のページ" に本当にあなたのテーブルですか? – Chris
これはページ上にあるもので、以前は開いていないことを意味しています。ダイアログの前にはダイアログがあります。 – Keith
'var nValue =の後に' alert(nValue) '(またはconsole.log)を追加するとどうなりますか? ..? val(テキスト)を呼び出すのに不思議そうです。 –