gpt4 book ai didi

javascript - 将 Regex 对象分配给 html 输入模式

转载 作者:搜寻专家 更新时间:2023-10-31 23:07:31 25 4
gpt4 key购买 nike

我需要以编程方式将正则表达式对象分配给输入元素模式属性。下面是我当前的实现:

var regex = /\d{5}/;
element.attr("pattern", regex.toString().slice(1,-1);

有没有更好的方法在不进行字符串操作的情况下做到这一点?

最佳答案

RegExp 实例有一个 source property其中包含他们的文字:

The value of the source property is a String in the form of a Pattern representing the current regular expression.

因此

/\d{5}/.source === "\\d{5}"

所以你的代码可以改成

var regex = /\d{5}/;
element.setAttribute("pattern", regex.source);

关于javascript - 将 Regex 对象分配给 html 输入模式,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15490742/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com