...
|
...
|
@@ -55,7 +55,15 @@ var $=require('jquery'); |
|
|
'ok': {
|
|
|
exec: function (editor, $w) {
|
|
|
var href = $('#edui-link-Jhref').val().replace(/^\s+|\s+$/g, '');
|
|
|
|
|
|
if(href == ""){
|
|
|
common.util.__tip("Url不能为空!");
|
|
|
return false;
|
|
|
}
|
|
|
var reg = new RegExp(".+\.yoho[^.]*\.(com|cn).*","g");
|
|
|
if(!reg.test(href)){
|
|
|
common.util.__tip("Url必须包含yohobuy或者yoho,域名格式为com或者cn!");
|
|
|
return false;
|
|
|
}
|
|
|
if (href) {
|
|
|
editor.execCommand('link', {
|
|
|
'href': href,
|
...
|
...
|
|