check digit javascript的相關文章
check digit javascript的相關公司資訊
check digit javascript的相關商品

how to check digits present in javascript string or not - Stack Overflow
瀏覽:1202
日期:2025-04-26
You can try with this regex: ^[^\d]*$. And sample: var str = 'test123'; if ( str.match(/^
[^\d]*$/) ) { alert('matches'); } ......看更多