我有一個窗體,其中一個文本框是div標記的一部分。我希望它根據php GET請求中的文本框內容將該div標籤的內容更改爲另一個頁面。JQuery刷新從表格中的新網址DIV
例如,如果您鍵入地獄到文本框中,將位置=地獄加載goto.php?入格。
迄今這是代碼I中具有,和由於它是我的第一次與jquery吸入比胡佛吸塵器更多。
<div id="city"></div>
<form name="goto" action="/">
<input type="text" id="city">
<input type="submit" name="submit" class="button" id="submit_btn" value="New City" />
</form>
<script>
/* attach a submit handler to the form */
$("#goto").submit(function(event) {
/* stop form from submitting normally */
event.preventDefault();
/* get some values from elements on the page: */
var $form = $(this),
city = $form.find('input[name="city"]').val(),
/* Send the data using post and put the results in a div */
$('currentwxdiv').load('http://www.jquerynoob.bomb/hell.php?location=' + city);
});
</script>
目前代替了更新div的內容重新加載在瀏覽器中的整個頁面,然後用追加呢?提交=新+市
UPDATE這是我現在已經和其還在做所附的刷新整個頁面提交=新+市
<script>
/* attach a submit handler to the form */
$$('form[name="changewx"]').submit(function(event) {
/* stop form from submitting normally */
event.preventDefault();
/* get some values from elements on the page: */
var $form = $(this),
city = $('#city').val()
/* Send the data using post and put the results in a div */
$('#currentwxdiv').load('http://api.mesodiscussion.com/?location=' + city);
});
</script>
更新了我的答案。 「changewx」形式來自哪裏? – PeeHaa 2012-02-01 20:11:28