如何在html属性字符串中使用Javascript变量

时间:2016-02-16 11:25:44

标签: javascript html asp.net

我是这个

的新手

我正在写这段代码

" OnClientClick ="返回OpenRadWindow(' ImportSDS.aspx?id = ##',' RWImport');" >

我有js变量 var id ="<%= this.id%>&#34 ;;

所以我想在##如何使用这个id Varable请帮助。

1 个答案:

答案 0 :(得分:0)

如果您有可用的变量,则应该在方法中使用它。

我没有足够的代码来继续这样的事情。

with cte as (select id, CODE, ROW_NUMBER() over (partition by CODE order by CODE) as rownum
from Plant_Component
WHERE Plant_Component.CODE = 'testcode' )

UPDATE Plant_Component
SET CODE = CONVERT(varchar, rownum + (select max(convert(int,CODE)) from Plant_Component WHERE ISNUMERIC(CODE) = 1))
FROM cte, Plant_Component 
where cte.id = Plant_Component.id

然后是function OpenRadWindow(url, x) { var id = "<%= this.id %>"; url = url + id; ... then your code here }

OnClientClick