如果点击的radiobutton的值为'not_important'或'for_the_future',我有以下代码将焦点放在textarea $ newCommentBody字段上。
$(document).ready(function () {
$('#inhabitant_request_realization').on('click', 'input[type=radio]', function () {
var $newCommentBody = $('.fos_comment_comment_form_holder textarea'),
$tooltiptext = $('.tooltiptext'),
$this = $(this);
if ($this.val() == 'not_important' || $this.val() == 'for_the_future') {
$newCommentBody.focus();
$tooltiptext.show();
} else {
$tooltiptext.hide();
}
});
});
问题,实际上是$ newCommentBody是异步加载的,在我单击单选按钮后,焦点有时会放在textarea上,有时候因为$ newCommentBody在这种情况下是空的。
谢谢。