当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


JQuery globalEval()用法及代码示例


jQuery中的globalEval()方法用于全局执行一些JavaScript代码。

用法:

jQuery.globalEval( code [, options ] )

参数:globalEval()方法接受上面提到并在下面描述的两个参数:



  • code:此参数是要执行的JavaScript代码。
  • 选项=>随机数:此参数是传递给执行脚本的nonce属性。

返回值:它返回布尔值。

以下示例说明了jQuery中globalEval()方法的用法:

范例1:在此示例中,globalEval()方法在全局上下文中执行脚本。

<!DOCTYPE html> 
<html> 
<head> 
<meta charset="utf-8"> 
<title>JQuery | globalEval() method</title>  
<script src="https://code.jquery.com/jquery-3.4.1.js"></script> 
  
</head> 
<body style="text-align:center;">  
      
    <h1 style="color:green">  
        GeeksForGeeks  
    </h1>  
      
    <h3>JQuery | globalEval() method</h3> 
    <p>Execute a script in the global context.</p> 
    <p id = "geeks"> </p> 
    <script> 
    function GFG() { 
      jQuery.globalEval( "var newVar = 'Shubham Singh'" ); 
      document.getElementById("geeks").innerHTML = newVar; 
    } 
    GFG(); 
    </script> 
</body> 
</html>                                                                                                    

输出:

范例2:在此示例中,globalEval()方法在启用了内容安全策略的站点上执行具有随机数值的脚本。

<!DOCTYPE html> 
<html> 
<head> 
<meta charset="utf-8"> 
<title>JQuery | globalEval() method</title>  
<script src="https://code.jquery.com/jquery-3.4.1.js"></script> 
  
</head> 
<body style="text-align:center;">  
      
    <h1 style="color:green">  
        GeeksForGeeks  
    </h1>  
      
    <h3>JQuery | globalEval() method</h3> 
    <p>Execute a script with a nonce value on a<br> 
    site with Content Security Policy enabled.</p> 
    <p id = "geeks"> </p> 
    <script> 
    function GFG() { 
      jQuery.globalEval( "var variable = true;", { 
    nonce:"nonce-2726c7f26c" 
  } ); 
      document.getElementById("geeks").innerHTML = variable; 
    } 
    GFG(); 
    </script> 
</body> 
</html>                                                                                                                                            

输出:




相关用法


注:本文由纯净天空筛选整理自SHUBHAMSINGH10大神的英文原创作品 JQuery | globalEval() method。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。