使用简单 HTML DOM 解析器从 Javascript 查找内容
如何使用简单 HTML DOM 解析器找到“请再次输入有效密钥”内容?
示例:
<script language="javascript">
function Enable() {
alert('Please enter a valid key again');
}
</script>
这似乎不起作用:
<?php
include_once("simple_html_dom.php");
$html = file_get_html("incorrect.html");
$ret = $html->find("Please enter a valid key again", 0);
if ($ret) {
echo "found";
} else {
echo "not found";
}
?>
How do I find the content "Please enter a valid key again" using Simple HTML DOM Parser?
Example:
<script language="javascript">
function Enable() {
alert('Please enter a valid key again');
}
</script>
This don't seem to work:
<?php
include_once("simple_html_dom.php");
$html = file_get_html("incorrect.html");
$ret = $html->find("Please enter a valid key again", 0);
if ($ret) {
echo "found";
} else {
echo "not found";
}
?>
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以用更简单的方法来做到这一点:
You can do this in a simpler way: