Commit 8af26de0 by Kim Eunchul

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

parent 05dc286c
...@@ -1041,7 +1041,7 @@ CONTENTSEARCH.searchEventButtonFunction = function() { ...@@ -1041,7 +1041,7 @@ CONTENTSEARCH.searchEventButtonFunction = function() {
alert('200字以下のテキストを入力してください'); alert('200字以下のテキストを入力してください');
return; return;
} }
if ($('#txtSearch').val() != '') {
try{ try{
//seperate string //seperate string
var myRegexp = /[^\s"]+|"([^"]*)"/gi; var myRegexp = /[^\s"]+|"([^"]*)"/gi;
...@@ -1135,6 +1135,7 @@ CONTENTSEARCH.searchEventButtonFunction = function() { ...@@ -1135,6 +1135,7 @@ CONTENTSEARCH.searchEventButtonFunction = function() {
alert('正しくない検索です'); alert('正しくない検索です');
return; return;
} }
}
if(count > 5){ if(count > 5){
alert('語句数は最大5つです'); alert('語句数は最大5つです');
......
...@@ -269,7 +269,7 @@ HEADER.searchHeaderButtonFunction = function(){ ...@@ -269,7 +269,7 @@ HEADER.searchHeaderButtonFunction = function(){
alert('200字以下のテキストを入力してください'); alert('200字以下のテキストを入力してください');
return; return;
} }
if ($('#txtSearch').val() != '') {
try{ try{
//seperate string //seperate string
var myRegexp = /[^\s"]+|"([^"]*)"/gi; var myRegexp = /[^\s"]+|"([^"]*)"/gi;
...@@ -363,7 +363,7 @@ HEADER.searchHeaderButtonFunction = function(){ ...@@ -363,7 +363,7 @@ HEADER.searchHeaderButtonFunction = function(){
alert('正しくない検索です'); alert('正しくない検索です');
return; return;
} }
}
if(count > 5){ if(count > 5){
alert('語句数は最大5つです'); alert('語句数は最大5つです');
return; 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