JS注入配置教程淘宝热卖输入法改搜索按钮
开启JS注入: 写上代码
//search action
(function () {
if (!/taobao\.com|tmall\.com/.test(location.href)) return;
function d() {
var f = $("form.searchbox");
if (f.length == 0) return false;
f.attr("method", "post").attr("action", "x");
if (document.getElementById("_ltAPP_b"))
f.attr("style", "padding-left:50px").find("span.q").attr("style", "width:10.5rem");
return true;
}
var t = setInterval(function () { if (d()) clearInterval(t); }, 300);
})();
真机效果:
在输入法的右下角可以看到【搜索】二字
|