开发者

get and set string onmouseover js value

开发者 https://www.devze.com 2023-04-09 06:57 出处:网络
I want to run some onmo开发者_Go百科usedown function, but how can I run this function without onmousedown event, in twebbrowser?

I want to run some onmo开发者_Go百科usedown function, but how can I run this function without onmousedown event, in twebbrowser?

Can you suggest me a proper function, please?


Try setting the function name to null, like this:

alert('test'); // will show 'test'
alert = null;
alert('test'); // will do nothing
0

精彩评论

暂无评论...
验证码 换一张
取 消