0

我需要你的帮助,

我需要的是一个 javscript 函数,它可以完成以下两件事之一:

首先,如果给定一个字符串,即。var x = "filenumber"调用该函数时,将处理字符串并在其末尾添加 -2,从而导致var x = "filenumber-2"字符串末尾不存在 -2。

其次,如果给定值,var x is already = "filenumber-2"则取字符串末尾的数字并将其增加 1 var x = "filenumber-3".,如果再次调用该函数,则在此之后每次增加数字。

这是概念标记:

<DOCYTPE HTML>
<html>
<head>
<script type="text/javascript">
function test(){

var x = document.getElementById('input').value

1.) if x doesnt already have the -2 at the end of the string then add it:

document.getElementById('output').value = x + "-2"


2.) else, the function recognizes that it does and the result of the output is

x-2 + 1

}
</script>
</head>
<body>
<input type="text" id="input"/>
<br>
<input type="text" id="output"/>
<br>
<input type="button" onclick="test()" value="test"/>
</body>
</html>
4

1 回答 1

0

简短的甜蜜:

x = 'filenumber-4';
x = x.replace(/^(.+?)(-\d+)?$/, function(a,b,c) { return c ? b+(c-1) : a+'-2'; } );
于 2013-11-02T00:24:40.360 回答