jquery - 脚本5007 : Unable to get property 'settings' of undefined or null reference

标签 jquery jquery-validate internet-explorer-9

CREATE  FUNCTION [dbo].[PMURP_Func_ParseArray] (@Array VARCHAR(1000),@separator CHAR(1))
RETURNS @T Table (ExtractWords varchar(50))
AS 
BEGIN
--DECLARE @T Table (col1 varchar(50))
-- @Array is the array we wish to parse
-- @Separator is the separator charactor such as a comma
DECLARE @separator_position INT -- This is used to locate each separator character
DECLARE @array_value VARCHAR(1000) -- this holds each array value as it is returned
-- For my loop to work I need an extra separator at the end. I always look to the
-- left of the separator character for each array value

SET @array = @array + @separator

-- Loop through the string searching for separtor characters
WHILE PATINDEX('%' + @separator + '%', @array) <> 0 
BEGIN
-- patindex matches the a pattern against a string
SELECT @separator_position = PATINDEX('%' + @separator + '%',@array)
SELECT @array_value = LEFT(@array, @separator_position - 1)
-- This is where you process the values passed.
INSERT into @T VALUES (@array_value) 
-- Replace this select statement with your processing
-- @array_value holds the value of this element of the array
-- This replaces what we just processed with and empty string
SELECT @array = STUFF(@array, 1, @separator_position, '')
END
RETURN 
END

Select Description from Bad_Names WHERE Description in (Select * from dbo.PMURP_Func_ParseArray('bala',' '))

Description,Name_ID
PK_BadNames nonclustered, unique, primary key located on PRIMARY    Description

最佳答案

就我而言,我有一个 <form></form>里面 <form></form>这导致了这个错误。

关于jquery - 脚本5007 : Unable to get property 'settings' of undefined or null reference,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17966439/

相关文章:

javascript - 如何使用 CSS 和 Javascript 制作滚动行的 Divs?

css - 在 IE 中使图像在两条线之间居中

jquery - jQuery .data() 如何工作?

jquery - 使用 jQuery 更改位置属性在 IE 中无法正常工作

javascript - 验证表单和字段验证的两个事件

asp.net-mvc - 如果另一个属性在 MVC 3/jQuery Validator 上有值,则验证一个属性

css - IE9 - 打印时 CSS 失败

javascript - FuelUX 树数据源选项未定义

php - 带有 ajax 请求的 Codeigniter csrf token (500 内部服务器错误)

jquery - 验证预填充的 jQuery 表单(第一个字段清除时无效,ASP.NET 且不显眼)