我this government site page并使用开发者控制台我想通过在控制台中输入以下代码来删除附加到body标签的onload事件:
-(IBAction)submit:(id)sender
{
NSString *txtval= txtfield.stringValue;
NSLog(@"submit: %@", txtval);
[[NSNotificationCenter defaultCenter] postNotificationName:@"DataUpdated"
object:txtval];
}
但这不起作用。
从附加的javascript代码中移除此处理程序的方法是什么? 因为我需要使用Google Chrome扩展程序中的attache JS代码将其删除。
我还没有在Google Chrome扩展程序中尝试此代码。首先,我想使用开发者控制台使其工作。