這是我的代碼... 在這一個文本框是隱藏的,另一個是啓用命名(許可證).. 雖然檢查複選框的複選框的值需要設置到隱藏文本框,並啓用它... 並啓用文本需要被禁用...如何將一個文本框設置爲啓用而另一個文本框被禁用?
$(document).ready(function(){
$('input[name=licence3]').blur(function(){
var third = $(this).val();
var first = $('input[name=licence1]').val();
var second = $('input[name=licence2]').val();
$('input[name=licence]').val(first+second+third);
});
$("#check").click(function() {
$('input[name=licence1]').val("");
$('input[name=licence2]').val("");
$('input[name=licence3]').val("");
$('input[name=licence]').val("");
// Here i need another coding While clicking checkbox
//the checkbox value should set to the hidden textbox value which is in same name...
//And the Enabled textbox should be disable
});
});
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.10.1/jquery.min.js"></script>
<form>
<input type="hidden" name="licence" value="" disabled="disabled" />
<input type="text" name="licence1" value="" />
<input type="text" name="licence2" value="" />
<input type="text" name="licence3" value="" />
<input type="checkbox" id="check" value="Applied">
<br>
<br>
Final<input type="text" name="licence" value="" />
</form>
很抱歉的麻煩。 ..名爲(許可證)的文本框只能禁用和啓用相同的命名文本框...將複選框值分配到隱藏文本框字段 – Kevin 2015-03-02 13:55:29
檢查我注意到的上述4件事情。希望它有幫助 – 2015-03-02 13:57:21
它的工作......謝謝 – Kevin 2015-03-02 14:15:38