我有两个不同的脚本标签,我可以从第二个调用函数。像这样
<script>
var = something;
. . .
<td onclick="myFunc("+something+")"></td>
</script>
<script>
function myFunc(data){..}
</script>
答案 0 :(得分:0)
在[Authorize(Roles = "Admin, Editor")]
public class HomeController : Controller
{
public ActionResult Index()
{
return View();
}
[BlackList(Roles = "Editor")]
public ActionResult About()
{
return View();
}
}
秒之后将<td>
标记移出<script>
代码,您就可以了。
顺便说一句,请考虑将<script>
中的blockquotes更改为此<td onclick="myFunc("+something+")"></td>
之类的引号,否则您的HTML将无法正确解析
答案 1 :(得分:0)
是的,你可以。这些职能属于全球一级。这是一个例子:
<section class="grabber2">
<?php
$x = 0;
echo '<tr>';
while ($x < 4){
echo
'<td> phrase 1!</td>',
'<td> phrase 2!</td>';
$x++;
}
?></tr>
</section>
这确实会导致弹出“hi”。
JSFiddle:http://jsfiddle.net/we8pb7md/