我想将一个参数传递给一个名为ForPaste()
.
我的功能如下:
var regex = /^[A-Za-z0-9ĀĒĪŌŪāēīōū\.\-\~\`\'' ]*$/;
var SalaryRegex = /^[A-Za-z0-9\,\.\/\$ ]*$/;
$.fn.ForPaste = function () {
return this.each(function () {
$(this).bind('input propertychange', function () {
var value = $(this).val();
if (!regex.test(value)) {
$(this).val("");
}
});
});
};
这个函数在一个普通的 JS 文件中。它在单个页面上调用。我想根据传递的参数测试正则表达式。那么我能知道ForPaste()
使用参数调用函数的方法吗?例如,我在函数中$("#Text1").Forpaste('FromForm1');
得到了这个。FromForm1
ForPaste()