Hello! It's a great pleasure to have you visit my blog.
It's truly a fateful encounter. If you are interested in Chinese goods, we can collaborate.
I can provide you with affordable Chinese products that you can sell in your country, thereby boosting our economic income.


If you are willing to cooperate, I hope to hear from you to discuss the opportunity for collaboration.
Here is my Email: t@29ym.com
Looking forward to connecting with you and embarking on this partnership together!

JQ根据textarea关键词自动获取select选项

日常开发中经常用到textarea输入一堆内容,然后根据输入得文本里某个关键词自动选中select值
简单几行代码,就可以实现输入得文本内容自动获取下拉框。

列图
请输入图片描述

$('#texta').keyup(function(){
   var texta= $('#texta').val();
     function isContain(str,substr){
     return new RegExp(substr).test(str);
    }
   if(isContain(texta,'sm')){
        $('.combo').val('网络神马'); 
   }
    });

需要引入JQ代码如下

发表新评论