私は以下のようなシナリオを持っている...
どのように私は/ $のに.getを使用することによって達成することができます$ post jquery関数ですか?
Send.html
<script type="text/javascript">
$(function()
{
$("#btn").click(function() {
Receive.ShowMsg("Heloword"); //
});
</script>
<body>
<input type="button" id="btn" value="SendMessage">
</body>
Receive.html
<script type="text/javascript">
function ShowMsg (strtext)
{
$("#result").val(strtext);
}
</script>
<body>
<div class="input"> <input type="text" id="result"></input> </div>
</body>
あなたは、特定のページの変更は、別のページに反映したい場合は、事前
これはどのような用途ですか?現在のページで未開封のページに値を設定したいですか? –