作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
也许这个问题已经发布了,我只是不知道如何搜索它。
我想知道如何创建类似 .replace()
或 .toString()
的方法。我的意思是,如果我有一个变量并且我想搜索该变量是否有数字,就像这样做
var someVariable = "hello 34, how are you";
var containsIntsNumber = someVariable.SearchInteger();//being search integer my custom method
if(containsIntsNumber )
{
console.log("It does have integers");
}
我怎样才能做到这一点?
最佳答案
您可以修改 prototype在 String object 上.
String.prototype.someFunction = function () {
/* Your function body here; you can use
this to access the string itself */
};
关于javascript - 如何向 JavaScript 中的字符串添加新方法?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16379081/
我是一名优秀的程序员,十分优秀!