} } if ($("#imagePath").length>0 && 0 == $("#imagePath").val().length) { alert('图片路径不能为空'); return false; } if ($("#title").length>0 && 0 == $("#title").val().length) { alert('标题不能为空'); return false; } if ($("#title_limit").length>0) { var configLimit = parseInt(<?php echo ChannelBuilder::getTplConfigOfAllBuilder($piece->tpl->name, ChannelBuilder::TPL_LIMIT); ?> ); if (0 == $("#title_limit").val().length) { alert('标题不能为空'); return false; } else if (configLimit < $("#title_limit").val().length) { alert('标题不能超过'+ configLimit +'个字'); return false; } } if ($("#url").length>0) {
<?php } ?> </div> </div> <style> .allItem{ border:1px solid; padding:10px;margin-bottom:10px;} .eachItem{ font-size:12px; margin:5px 0 5px 0;} .allTitle{font-size:14px;font-weight:bold;} </style> <script type="text/javascript"> function doCheck() {/*{{{*/ if ($("#title_limit_list").length>0) { var configLimit = parseInt(<?=ChannelBuilder::getTplConfigOfAllBuilder($piece->tpl->name, ChannelBuilder::TPL_LIMIT)?>); if (0 == $("#title_limit_list").val().length) { alert('标题不能为空'); return false; } else if (configLimit < $("#title_limit_list").val().length) { alert('标题不能超过'+ configLimit +'个字'); return false; } } if($("#title_count_limit").length>0) { var count = $("#title_count_limit").val(); var reg = /^[0-9]*[1-9][0-9]*$/;