Commit 8af26de0 by Kim Eunchul

#39714 andやor検索(未入力検索修正)

parent 05dc286c
......@@ -1041,7 +1041,7 @@ CONTENTSEARCH.searchEventButtonFunction = function() {
alert('200字以下のテキストを入力してください');
return;
}
if ($('#txtSearch').val() != '') {
try{
//seperate string
var myRegexp = /[^\s"]+|"([^"]*)"/gi;
......@@ -1135,6 +1135,7 @@ CONTENTSEARCH.searchEventButtonFunction = function() {
alert('正しくない検索です');
return;
}
}
if(count > 5){
alert('語句数は最大5つです');
......
......@@ -269,7 +269,7 @@ HEADER.searchHeaderButtonFunction = function(){
alert('200字以下のテキストを入力してください');
return;
}
if ($('#txtSearch').val() != '') {
try{
//seperate string
var myRegexp = /[^\s"]+|"([^"]*)"/gi;
......@@ -363,7 +363,7 @@ HEADER.searchHeaderButtonFunction = function(){
alert('正しくない検索です');
return;
}
}
if(count > 5){
alert('語句数は最大5つです');
return;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment