我是firefox的新手,我使用JPM制作一个firefox插件并将其提交给Mozilla。他们拒绝它的一个原因是使用没有type属性的iframe元素。
以下是加载iframe的两种情况。
myIframe.type = 'content'
-- TRUNCATE is quickest way to make sure its empty.
-- If you do a DELETE with a million rows, it could
-- take 5 min to delete. With TRUNCATE it will take
-- 1-second no matter how many rows.
TRUNCATE TABLE CommandQueue
GO
INSERT INTO CommandQueue
( TargetIP ,
CommandID )
SELECT DISTINCT -- Only unique rows
DeviceIPAddr ,
@parameter1
FROM Devices;
GO
我是否完全缺少某些内容,或者我是如何设置类型属性的?