function as google chrome bookmark

前端 未结 6 536
梦毁少年i
梦毁少年i 2020-11-30 21:03

Let me first say the problem I have: I need to fill in the same web page a lot of times, and the content that I need to fill in is for the biggest part the same, but is scat

6条回答
  •  一向
    一向 (楼主)
    2020-11-30 21:33

    For Mozilla use like as

    javascript:function myFun(){
    var d=document;
    var e=d.getElementById("someElement");
    var e.value="some value";
    }myFun();
    

提交回复
热议问题