Commit 09b82f11 by 朱继来

调整JS事件

parent 20d90f45
......@@ -365,7 +365,7 @@
})
// 合同备注
$(document).delegate('.change_contract_remark', 'keyup', function(){
$(document).delegate('.change_contract_remark', 'blur', function(){
var val = $(this).val();
if (!val) return false;
......
......@@ -413,7 +413,7 @@
})
// 合同备注
$('.edit_contract_remark').keyup(function(){
$('.edit_contract_remark').blur(function(){
var val = $(this).val();
if (!val) return false;
......@@ -452,14 +452,14 @@
*/
function getSubStr(str, start, n)
{ // eslint-disable-line
if (str.replace(/[\u4e00-\u9fa5]/g, '*').length <= n) { // 中文长度为两字节,这里只作为一个字节处理
if (str.replace(/[\x00-\xff]/g, '*').length <= n) { // 中文长度为两字节,这里只作为一个字节处理
return str;
}
let len = 0;
let tmpStr = '';
for (let i = start; i < str.length; i++) { // 遍历字符串
if (/[\u4e00-\u9fa5]/.test(str[i])) { // 中文长度为两字节,这里只作为一个字节处理
if (/[\x00-\xff]/.test(str[i])) { // 中文长度为两字节,这里只作为一个字节处理
len += 1;
} else {
len += 1;
......
......@@ -48,7 +48,7 @@
<input type="text" class="form-control edit_remarks" name="change_item[{{ $item['rec_id'] }}][remarks]" value="{{ $item['remarks'] }}" placeholder="请填写商品备注" style="width:200px;">
</td>
<td>
<input type="text" class="form-control edit_contract_remark" name="change_item[{{ $item['rec_id'] }}][contract_remark]" value="{{ $item['contract_remark'] }}" placeholder="请填写合同备注" style="width:200px;">
<input type="text" class="form-control edit_contract_remark" name="change_item[{{ $item['rec_id'] }}][contract_remark]" value="{{ $item['contract_remark'] }}" placeholder="限制8个字符" style="width:200px;">
</td>
</tr>
......
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 sign in to comment