有兩個文件,html和jquery。我想知道如果可能連接這兩個文件。jQuery和HTML之間的連接
jQuery的test.js:
$(document).ready(function(){
$('#inputForm').submit(function(){
$('#inputForm :text:not("#submit")').each(function(){
var input = $(this).val();
var someData = [];
var weblink = 'http://www.google.com&callback=?'; // just example
$.getJSON(weblink, function(data){
$.each(data.results, function(i, item){
someData.push(item.json_Tag);
});
});
});
});
});
和HTML文件如下:
<html>
<head>
<meta http-equiv = "Content-Type" content = "text/html">
<script type="text/javascript" src="jquery.min.js"></script>
<script type="text/javascript" src="jquery-test.js"></script>
</head>
<body>
<form method = "post" action = "/result" id = inputForm>
<input type = "text" name = "input" id = input>
<input type = "submit" value = "Search" id = search>
</form>
</body>
</html>
過程如下:在文本中的一些字
- 用戶關鍵區域並按下按鈕。
- jquery將鏈接到「weblink」並捕獲一些數據。
- jQuery將這些數據返回給HTML文件。
- HTML文件重定向到/結果頁與這些數據。
但我不知道我該怎麼做上面的過程?我不知道如何返回jquery的數據表單?我不知道如何讓HTML重定向到其他數據頁面。
非常感謝。
有什麼問題嗎? – 2011-05-17 15:04:54
這聽起來像一個標準的POST給我? – omninonsense 2011-05-17 15:15:02
在jquery中有一個post方法。但是有一個不同的垃圾。 – 2011-05-17 15:22:42