我有一個表格檢查是否已經選擇了產品,那麼警報用戶
<form action="" method="POST">
Quantity1: <input type="text" name="quantity1" id="quantity1">
Product1: <select name="product1" id="product1"><option value="1">Product 1</option><option value="2">Product 2</option> ... <option value="15">Product 15</option></select>
Price1: <input type="text" name="price1" id="price1">
Quantity2: <input type="text" name="quantity2" id="quantity2">
Product2: <select name="product1" id="product2"><option value="1">Product 1</option><option value="2">Product 2</option> ... <option value="15">Product 15</option></select>
Price2: <input type="text" name="price2" id="price2">
.
.
.
Quantity15: <input type="text" name="quantity15" id="quantity15">
Product15: <select name="product15" id="product15"><option value="1">Product 1</option><option value="2">Product 2</option> ... <option value="15">Product 15</option></select>
Price15: <input type="text" name="price15" id="price15">
<input type="submit" value="submit">
</form>
我想如果產品已被選中,然後提醒,這是選擇的用戶進行檢查。 它應該是這樣的,因爲我想
$('select[id^="product"]').change(function() {
//empty array
var selected_values = array();
//check value if it is in array then alert
if ($(this).val() IS IN ARRAY) {
var product = $(this).text();
alert("you have already select this"+product);
} else {
// else save it in array
selected_values[] = $(this).val();
}
}
像這樣的事情http://jsfiddle.net/GKTYE/但在這提醒我提出想上選擇更改。請幫忙!
您忘了發佈jQuery代碼... – elclanrs
Javascript部件在哪裏? – djakapm
你想提醒用戶什麼時候?在他們提交之前或之後? – Popnoodles