我有一个脚本,它通过sql命令实用程序运行,并在一个varchar字段中插入此代码
<script>
$(document).ready(function(){
$(body).css(''margin'',''400px'')
})
</script>
它给了我这个
'document' scripting variable not defined.
'body' scripting variable not defined.
错误。可能是什么问题?
答案 0 :(得分:0)
SQLCMD
使用$(...)
形式在运行时执行变量替换。
您可以使用-x
选项关闭变量替换。
SQLCMD -x <the rest of your command string>
有关详细信息,请参阅MSDN