|
|
|
ทำ form ที่มี 2 Action โดยใช้ List/Menu เป็นตัวกำหนด Action ทำอย่างไรครับ (ตามภาพ) |
|
|
|
|
|
|
|
แบบใช้ jQuery
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>Untitled Document</title>
<script src="http://code.jquery.com/jquery-1.10.1.js"></script>
<script>
$(document).ready(function(e) {
$('#Go').click(function(e) {
$('#form1').attr('action',$('#Target option:selected').val());
$('#form1').submit()
});
});
</script>
</head>
<body>
<form id="form1" name="form1" method="post" action="">
<label for="Target">Where you go? </label>
<select name="Target" id="Target">
<option value="action1.php">Action 1</option>
<option value="action2.php">Action 2</option>
</select>
<button id="Go" type="button" >Let's go.</button>
</form>
</body>
</html>
|
|
|
|
|
Date :
2013-06-27 23:05:34 |
By :
Krungsri |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
มันเยี่ยมยอดเลยครับท่าน ขอบคุณมากๆครับท่าน Krungsri
ขอให้รวยๆ เจริญนะครับ ขอบคุณอีกครั้งครับ ที่แบ่งปันความรู้
และขอบคุณ Thaicreate.com
|
|
|
|
|
Date :
2013-06-28 00:19:54 |
By :
like-com |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Load balance : Server 03
|