3
Hy我是Jquery的新成員。我想發送數據到http,但我不知道何時使用類發送數據。 這是我的html如何讓http獲取JQuery
<div class="action-lock">
<div class="toggle-pane">
<div class='unique' id='switch'>
<div class='toggle-text-off'>Unlocked</div>
<div class='glow-comp'></div>
<div class='toggle-button'></div>
<div class='toggle-text-on'>Locked</div>
</div>
</div>
</div>
這我的JQuery
$('.unique').click(function(e) {
e.preventDefault();
$(this).toggleClass('toggle-on');
});
如何發送HTTP GET在Locked
和Unlocked
。一些示例URL如下localhost/web.php?tN=locked
或localhost/web.php?tN=unlocked
。請幫助我知道如果發送http get如果條件是這樣的。由於
我恐怕不太你問明白。你問**如何**將這兩個DIV的內容POST到外部頁面?爲此,您可以使用AJAX或XMLHttpRequest。 –
發送數據到哪裏?你的問題沒有意義。 – Difster
發送HTTP獲取的含義是什麼? – webpic