jQuery有很多颜色选择器,但是当我尝试在普通的jQuery Mobile中实现它们时,它们无法按预期工作。它们与jQuery Mobile框架冲突并根据需要进行渲染。
还有其他与jQuery Mobile兼容的jQuery colorpickers吗?
请指教。
感谢您的提前时间。
答案 0 :(得分:4)
答案 1 :(得分:0)
尝试data test_set;
infile datalines dsd;
length string $100;
input string;
datalines;
Mary had a little lamb its fleece was white as snow
Jack be nimble Jack be quick Jack jump over the candlestick
I think you and I should marry each other
I actually do not want to get married
;
run;
data test_set1(keep=string flag);
set test_set;
length i_word $100;
flag = 0;
mary_soundex = soundex("mary");
word_count = countw(string);
i = 1;
do while (i le word_count and flag ne 1);
i_word = scan(string, i);
i_word_soundex = soundex(i_word);
if mary_soundex eq i_word_soundex then flag = 1;
i = i + 1;
end;
run;
。它可能适合你所追求的目标。
如果您正在寻找跨浏览器/平台的内容,this基于预设的移动选择器可能有所帮助。单选和多选可选择亮度细化。查看examples。