フォームを送信するときに、selectmenu のタイトルを取得する必要があります。以下のコードを使用しています。しかし、それは価値を与えていません。
$('#form1').submit(function () {
$('.required').filter(':visible').each(function () {
var input = $(this);
if (!input) {
$(".ui-selectmenu").addClass( "required" );
var msg = input.attr('title');
alert(msg);
$(".ui-selectmenu").after('<ul class="error"><li>'+$msg+'</li></ul>');
}
});
});
セレクトメニュー
$('select.class1:not(select.class2)').selectmenu({
style:'dropdown',
maxHeight: 300,
transferClasses: true
});
HTML
<select id="test" name="test" class="required class1" title="Please select to continue.">
このアラートは私に空の値を与えています。これについて何か助けはありますか?ありがとう