نقل قول: انتخاب از select option
کسی نیست راهنمایی کنه؟؟؟؟؟؟؟؟؟؟
نقل قول: انتخاب از select option
سرچ کنید.
<script language="javascript">
function chk(txtId)
{
var txt= document.getElementById(txtId).value;
if(txt.length == 20)
{
alert('max');
document.getElementById('sel').value=2;
}
}
</script>
<textarea name="txt1" id="txt1" cols="" rows="" onkeyup="chk('txt1');">
</textarea>
<hr>
<select id="sel" name="sel">
<option value="1" selected="selected">
One</option>
<option value="2">
Two</option>
</select>