我有表格中的代码
<div class="screen-reader-response"></div>
<div class="screen-reader-response" role="alert">My Content alert<div>
我是用户代码:
$( ".screen-reader-response" ).dialog();
问题:当我没有提交任何内容时:没有内容的回显对话
如何设置:
if:no submit any thing:<div class="screen-reader-response"></div>
没有回音提醒
if:提交:<div class="screen-reader-response" role="alert">My Content alert<div>
echo alert My Content alert
给我任何想法?
访问我的网站:http://www.graylinecruisehalong.net/在提交时始终是对话框内容?
答案 0 :(得分:1)
没有提交时:
$(".screen-reader-response").html("").dialog('open');
提交时:
$(".screen-reader-response").html("My Content alert").dialog('open');
要使用更多选项初始化对话框,请在以下位置查看jquery对话框的文档:http://api.jqueryui.com/dialog/