14 lines
609 B
Plaintext
14 lines
609 B
Plaintext
|
|
<script type="text/javascript">
|
||
|
|
$(function () {
|
||
|
|
$("body").on("change", "select.email3", function () {
|
||
|
|
$(this).parent().find("input.email2").attr("readonly", "readonly").addClass("read");
|
||
|
|
if ($(this).val() == "EMCD001") {
|
||
|
|
$(this).parent().find("input.email2").removeAttr("readonly").removeClass("read");
|
||
|
|
$(this).parent().find("input.email2").focus();
|
||
|
|
}
|
||
|
|
else {
|
||
|
|
$(this).parent().find("input.email2").val($(this).find("option:selected").text());
|
||
|
|
}
|
||
|
|
});
|
||
|
|
});
|
||
|
|
</script>
|